Skip to content

Commit

Permalink
Fix warning on MySQL >=5.5
Browse files Browse the repository at this point in the history
I always got this warning:

```Warning: Using unique option prefix pass instead of password is deprecated and will be removed in a future release. Please use the full name instead.```

(http://www.serveridol.com/2013/11/19/mysql-dump-warning-using-unique-option-prefix-pass-instead-of-password-is-deprecated/)
for every mysql command I do.
I don't know, when this password option was introduced, so it might break on earlier versions of MySQL.
  • Loading branch information
zealot128 committed Apr 1, 2014
1 parent d895a6f commit 942d840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/root_dot_my.cnf.j2
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[client]
user=root
pass={{ mysql_root_password }}
password={{ mysql_root_password }}

0 comments on commit 942d840

Please sign in to comment.