Skip to content

Commit ae61adc

Browse files
committed
Merge branch 'dev'
2 parents 0e533c0 + 8493ce4 commit ae61adc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mdbackup/actions/builtin/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def action_mysql_command(_, params: dict):
6363

6464
if docker:
6565
params['image'] = params.get('image', 'mariadb:alpine')
66+
params['user'] = None
6667
return action_docker(None, params)
6768
else:
6869
return action_command(None, params)
@@ -102,7 +103,6 @@ def action_influxd_command(_, params: dict):
102103

103104
if docker:
104105
params['image'] = params.get('image', 'influxdb:alpine')
105-
params['user'] = None
106106
return action_docker(None, params)
107107
else:
108108
return action_command(None, params)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import setuptools
44

5-
version = '0.4.1'
5+
version = '0.4.2'
66

77
with open("README.md", "r") as fh:
88
long_description = fh.read()

0 commit comments

Comments
 (0)