You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replaced deprecated MySQL aliases for MariaDB tests (#1200)
This fixes the recently failing GitHub Actions test workflows, in which
the MariaDB Docker container failed to start.
The issue seems to have been using the `mysqladmin` command for health
checking in `test.yml`, probably due to the following change in
MariaDB v11.0.1:
(Copied from https://mariadb.com/kb/en/mariadb-11-0-1-release-notes/)
"""
## Docker Official Images
* 11.0, unlike previous version, no longer includes mysql named
compatible executable symlinks inside the container.
"""
https://mariadb.com/kb/en/mysqladmin/ mentions that `mariadb-admin` is
now the new name of the script (previously `mysqladmin`).
Also replaced the `MYSQL_DATABASE` and `MYSQL_ROOT_PASSWORD` environment
variables with their new names (based on the docs:
https://mariadb.com/kb/en/mariadb-server-docker-official-image-environment-variables/).
0 commit comments