Skip to content

Commit 0f6aa82

Browse files
'stopped' var should be set to False until stop is ran
1 parent ff6c63a commit 0f6aa82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mongodb_consistent_backup/Oplog/Resolver/ResolverThread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, state, uri, tailed_oplog, mongodump_oplog, max_end_ts, compre
2121

2222
self.oplogs = {}
2323
self.changes = 0
24-
self.stopped = True
24+
self.stopped = False
2525

2626
def run(self):
2727
self.oplogs['backup'] = Oplog(self.mongodump_oplog['file'], self.do_gzip(), 'a+')

0 commit comments

Comments
 (0)