We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 533cf98 commit ba6af0bCopy full SHA for ba6af0b
1 file changed
mongodb_consistent_backup/Archive/Tar/TarThread.py
@@ -38,8 +38,8 @@ def run(self):
38
39
log_msg = "Archiving directory: %s" % self.backup_dir
40
cmd_flags = ["--exclude", "admin", "--exclude", "config" ,"-C", backup_base_dir+"/", "-c", "-f", self.output_file,]
41
- admin_command_flags = ["-C", self.backup_dir +"/dump/", "-c", "-f", admin_backup_file, ]
42
- config_command_flags = ["-C", self.backup_dir +"/dump/", "-c", "-f", config_backup_file, ]
+ admin_command_flags = ["-C", self.backup_dir +"/dump/", "-c", "-f", admin_backup_file, "--ignore-failed-read", ]
+ config_command_flags = ["-C", self.backup_dir +"/dump/", "-c", "-f", config_backup_file, "--ignore-failed-read", ]
43
44
45
if self.do_gzip():
0 commit comments