From a21020294596ff7f6708e37e41fce093b996ef66 Mon Sep 17 00:00:00 2001 From: Silthus Date: Mon, 8 Mar 2021 19:34:11 +0100 Subject: [PATCH] fix: add mising param --- src/restic_compose_backup/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/restic_compose_backup/commands.py b/src/restic_compose_backup/commands.py index c69d822..60c78c8 100644 --- a/src/restic_compose_backup/commands.py +++ b/src/restic_compose_backup/commands.py @@ -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',