浏览代码

etcdctl: remove duplicate exit line

`handleError` already exits with the exit code in arguments.
`os.Exit(1)` is never executed in this case.
Gyu-Ho Lee 10 年之前
父节点
当前提交
e8215cc577
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      etcdctl/command/util.go

+ 0 - 1
etcdctl/command/util.go

@@ -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(), ","))