From f2d8929a092a6f453db43d22f89d5641ca570a7f Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Thu, 22 Jun 2017 12:24:00 -0700 Subject: [PATCH] etcdctl/ctlv3: remove unnecessary 'return' Signed-off-by: Gyu-Ho Lee --- etcdctl/ctlv3/command/compaction_command.go | 1 - 1 file changed, 1 deletion(-) diff --git a/etcdctl/ctlv3/command/compaction_command.go b/etcdctl/ctlv3/command/compaction_command.go index 1b791b9d1..59e8990fb 100644 --- a/etcdctl/ctlv3/command/compaction_command.go +++ b/etcdctl/ctlv3/command/compaction_command.go @@ -57,7 +57,6 @@ func compactionCommandFunc(cmd *cobra.Command, args []string) { cancel() if cerr != nil { ExitWithError(ExitError, cerr) - return } fmt.Println("compacted revision", rev) }