fix mysql password (#8158)

There's a letter p missing from the password.

Co-authored-by: Jimmy Song <rootsongjc@gmail.com>
This commit is contained in:
Istio Automation 2020-09-17 07:49:41 -07:00 committed by GitHub
parent f4cf61ec5d
commit 457b3b1b11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ To make it easy to visually inspect the difference in the output of the Bookinfo
following commands to inspect the ratings: following commands to inspect the ratings:
{{< text bash >}} {{< text bash >}}
$ mysql -u root -password test -e "select * from ratings;" $ mysql -u root -ppassword test -e "select * from ratings;"
+----------+--------+ +----------+--------+
| ReviewID | Rating | | ReviewID | Rating |
+----------+--------+ +----------+--------+