Twitter GitHub

Using unique option prefix pass instead of password is deprecated

Если при работе с MySQL или в логах cron’а вы вдруг начали видеть сообщение:

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.

Скорее всего проблема в вашем ~/.my.cnf файле, который у вас выглядит как-то так:

[client]
user=root
pass=sEcReT

А должен выглядеть вот так:

[client]
user=root
password=sEcReT

1 комментарий