fix: command line args of mydumper regex
This commit is contained in:
parent
83b5d598c2
commit
158506bc20
1 changed files with 3 additions and 2 deletions
|
@ -50,7 +50,7 @@ class MariadbContainer(Container):
|
||||||
f"{destination}",
|
f"{destination}",
|
||||||
"--no-views",
|
"--no-views",
|
||||||
"--compress",
|
"--compress",
|
||||||
"--regex '^(?!(mysql\.))'"
|
"'^(?!(mysql\.))'"
|
||||||
]
|
]
|
||||||
|
|
||||||
def backup(self):
|
def backup(self):
|
||||||
|
@ -118,7 +118,8 @@ class MysqlContainer(Container):
|
||||||
f"{destination}",
|
f"{destination}",
|
||||||
"--no-views",
|
"--no-views",
|
||||||
"--compress",
|
"--compress",
|
||||||
"--regex '^(?!(mysql\.))'"
|
"--regex",
|
||||||
|
"'^(?!(mysql\.))'"
|
||||||
]
|
]
|
||||||
|
|
||||||
def backup(self):
|
def backup(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue