Skip to content

Commit

Permalink
Merge 1ddbd0c into 3099c60
Browse files Browse the repository at this point in the history
  • Loading branch information
tangenta authored Apr 21, 2021
2 parents 3099c60 + 1ddbd0c commit e5bcfba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/playground/playground.go
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,8 @@ If you'd like to use a TiDB version other than %s, cancel and retry with the fol
fmt.Println(color.GreenString("CLUSTER START SUCCESSFULLY, Enjoy it ^-^"))
for _, dbAddr := range succ {
ss := strings.Split(dbAddr, ":")
fmt.Println(color.GreenString("To connect TiDB: mysql --host %s --port %s -u root -p (no password)", ss[0], ss[1]))
connectMsg := "To connect TiDB: mysql --host %s --port %s -u root -p (no password) --comments"
fmt.Println(color.GreenString(connectMsg, ss[0], ss[1]))
}
}

Expand Down

0 comments on commit e5bcfba

Please sign in to comment.