diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-03-12 16:10:40 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-03-12 16:10:40 +0100 |
commit | 05ecb2f2c82e6da6f0d93644589b8aae660e3ebf (patch) | |
tree | 2df4f5ffc85e05e55aa4610fbf1751ea5e9d7795 /cmd-exec.go | |
parent | 92f718ade3789c1ed33be04d03c3214b6ed8f596 (diff) |
Exit xds-cli on XDS-Server disconneciton.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'cmd-exec.go')
-rw-r--r-- | cmd-exec.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd-exec.go b/cmd-exec.go index c988f95..819b911 100644 --- a/cmd-exec.go +++ b/cmd-exec.go @@ -160,6 +160,10 @@ func execCmd(ctx *cli.Context) error { // Wait exit select { + case res := <-IOSkClient.ServerDiscoChan: + Log.Debugf("XDS Server disconnected %v", res) + return cli.NewExitError(res.error, res.code) + case res := <-exitChan: errStr := "" if res.code == 0 { |