fix: add mising param

This commit is contained in:
Silthus 2021-03-08 19:34:11 +01:00 committed by Silthus
parent b02376354c
commit a210202945
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ def ping_mysql(host, port, username, password) -> int:
])
def ping_mariadb(host, port, username) -> int:
def ping_mariadb(host, port, username, password) -> int:
"""Check if the mariadb is up and can be reached"""
return run([
'mysqladmin',