fix: ping db with password

This commit is contained in:
Silthus 2021-03-08 19:29:42 +01:00 committed by Silthus
parent 1f4d81e319
commit b02376354c
3 changed files with 18 additions and 14 deletions

@ -1 +1 @@
Subproject commit 1fabdf87e3007e5934227b504ad673ba3697946c
Subproject commit bedaa052d3d187fac62a38b19659ef12242e2528

View File

@ -9,7 +9,7 @@ def test():
return run(['ls', '/volumes'])
def ping_mysql(host, port, username) -> int:
def ping_mysql(host, port, username, password) -> int:
"""Check if the mysql is up and can be reached"""
return run([
'mysqladmin',
@ -20,6 +20,8 @@ def ping_mysql(host, port, username) -> int:
port,
'--user',
username,
'--password',
password
])
@ -34,6 +36,8 @@ def ping_mariadb(host, port, username) -> int:
port,
'--user',
username,
'--password',
password
])

View File

@ -25,12 +25,12 @@ class MariadbContainer(Container):
"""Check the availability of the service"""
creds = self.get_credentials()
with utils.environment('MYSQL_PASSWORD', creds['password']):
return commands.ping_mariadb(
creds['host'],
creds['port'],
creds['username'],
)
return commands.ping_mariadb(
creds['host'],
creds['port'],
creds['username'],
creds['password']
)
def dump_command(self) -> list:
"""list: create a dump command restic and use to send data through stdin"""
@ -100,12 +100,12 @@ class MysqlContainer(Container):
"""Check the availability of the service"""
creds = self.get_credentials()
with utils.environment('MYSQL_PASSWORD', creds['password']):
return commands.ping_mysql(
creds['host'],
creds['port'],
creds['username'],
)
return commands.ping_mysql(
creds['host'],
creds['port'],
creds['username'],
creds['password']
)
def dump_command(self) -> list:
"""list: create a dump command restic and use to send data through stdin"""