mirror of
https://github.com/ZettaIO/restic-compose-backup.git
synced 2025-12-13 09:24:56 +00:00
fix: command line args of mydumper regex
This commit is contained in:
committed by
Silthus
parent
83b5d598c2
commit
158506bc20
@@ -50,7 +50,7 @@ class MariadbContainer(Container):
|
||||
f"{destination}",
|
||||
"--no-views",
|
||||
"--compress",
|
||||
"--regex '^(?!(mysql\.))'"
|
||||
"'^(?!(mysql\.))'"
|
||||
]
|
||||
|
||||
def backup(self):
|
||||
@@ -118,7 +118,8 @@ class MysqlContainer(Container):
|
||||
f"{destination}",
|
||||
"--no-views",
|
||||
"--compress",
|
||||
"--regex '^(?!(mysql\.))'"
|
||||
"--regex",
|
||||
"'^(?!(mysql\.))'"
|
||||
]
|
||||
|
||||
def backup(self):
|
||||
|
||||
Reference in New Issue
Block a user