Browse Source

etcdctl: main routine of import command should wait for goroutine existing

Xiang Li 10 years ago
parent
commit
1024f587e0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      etcdctl/command/import_snap_command.go

+ 1 - 0
etcdctl/command/import_snap_command.go

@@ -80,6 +80,7 @@ func handleImportSnap(c *cli.Context) {
 	}
 	n := copyKeys(all.Node, setc)
 	close(setc)
+	wg.Wait()
 	fmt.Printf("finished importing %d keys\n", n)
 }