etcdctl: remove duplicate exit line

`handleError` already exits with the exit code in arguments.
`os.Exit(1)` is never executed in this case.
release-2.3
Gyu-Ho Lee 2015-11-25 09:41:27 -08:00
parent 0777cda4ea
commit e8215cc577
1 changed files with 0 additions and 1 deletions

View File

@ -210,7 +210,6 @@ func mustNewClient(c *cli.Context) client.Client {
fmt.Fprintf(os.Stderr, "Try '--no-sync' if you want to access non-published client endpoints(%s).\n", strings.Join(hc.Endpoints(), ","))
}
handleError(ExitServerError, err)
os.Exit(1)
}
if debug {
fmt.Fprintf(os.Stderr, "got endpoints(%s) after sync\n", strings.Join(hc.Endpoints(), ","))