We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18e9421 commit 65b49c6Copy full SHA for 65b49c6
mongodb_consistent_backup/Rotate.py
@@ -72,7 +72,7 @@ def rotate(self):
72
else:
73
remove_backups[name] = ts
74
if len(remove_backups) > 0:
75
- logging.info("Backup(s) exceeds max backup count or age, removing: %s" % remove_backups.keys())
+ logging.info("Backup(s) exceeds max backup count or age, removing: %s" % sorted(remove_backups.keys()))
76
for name in remove_backups:
77
self.remove(remove_backups[name])
78
0 commit comments