Skip to content

Commit

Permalink
Merge pull request #381 from mikegriffin/extra_opts_24
Browse files Browse the repository at this point in the history
Fix for #359
  • Loading branch information
mikegriffin authored Sep 5, 2024
2 parents fb554ed + 6493665 commit 1f0c53a
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,13 +232,11 @@ def build_xb_args(config, basedir, defaults_file=None, binary_xtrabackup=False):
args.append("--strict=OFF")
if int(xtrabackup_version().split(".")[0]) < 8:
args.append("--no-timestamp")

if extra_opts:
args.extend(extra_opts)
if not binary_xtrabackup:
if basedir:
args.append(basedir)
else:
if extra_opts:
args.extend(extra_opts)
return args


Expand Down

0 comments on commit 1f0c53a

Please sign in to comment.