Skip to content

Commit

Permalink
Update playground.go
Browse files Browse the repository at this point in the history
  • Loading branch information
glkappe authored Aug 18, 2021
1 parent 94fa99f commit 92ee8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/playground/playground.go
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ func (p *Playground) bootCluster(ctx context.Context, env *environment.Environme
fmt.Println(color.GreenString("CLUSTER START SUCCESSFULLY, Enjoy it ^-^"))
for _, dbAddr := range succ {
ss := strings.Split(dbAddr, ":")
connectMsg := "To connect TiDB: mysql --host %s --port %s -u root -p (no password) --comments"
connectMsg := "To connect TiDB: mysql --comments --host %s --port %s -u root -p (no password)"
fmt.Println(color.GreenString(connectMsg, ss[0], ss[1]))
}
}
Expand Down

0 comments on commit 92ee8b0

Please sign in to comment.