Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

Commit

Permalink
Fix y/n
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeteo committed May 11, 2018
1 parent e3d9197 commit ce6f749
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/tools/cmq/repair.go
Expand Up @@ -37,7 +37,9 @@ func repair(c *cli.Context) error {
}
fmt.Printf("Please confirm the deletion plan above.\n" +
"You should confirm that the consumer_group_uuid match ONLY the consumer_group_uuid provided")
askForConfirmation("Delete now")
if askForConfirmation("Delete now") == false {
return nil
}

run := c.Bool("run")
timeout := c.Duration("timeout")
Expand Down

0 comments on commit ce6f749

Please sign in to comment.