Skip to content

Commit

Permalink
Recover parameter error message is incorrect (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
aliyx authored and disksing committed Jul 6, 2017
1 parent 0e4b711 commit e74a99e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/pd-recover/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ func exitErr(err error) {
func main() {
flag.Parse()
if *clusterID == 0 {
fmt.Println("please specify safe alloc-id")
fmt.Println("please specify safe cluster-id")
return
}
if *allocID == 0 {
fmt.Println("please specify safe cluster-id")
fmt.Println("please specify safe alloc-id")
return
}

Expand Down

0 comments on commit e74a99e

Please sign in to comment.