Skip to content

Commit

Permalink
Drop restore batch size to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
jay0lee authored Apr 19, 2024
1 parent 5b4dfb1 commit 884e44d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gyb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2229,7 +2229,7 @@ def main(argv):
# RESTORE #
elif options.action == 'restore':
if options.batch_size == 0:
options.batch_size = 3
options.batch_size = 1
resumedb = os.path.join(options.local_folder,
"%s-restored.sqlite" % options.email)
if options.noresume:
Expand Down Expand Up @@ -2357,7 +2357,7 @@ def main(argv):
# RESTORE-MBOX #
elif options.action == 'restore-mbox':
if options.batch_size == 0:
options.batch_size = 3
options.batch_size = 1
resumedb = os.path.join(options.local_folder,
"%s-restored.sqlite" % options.email)
if options.noresume:
Expand Down

0 comments on commit 884e44d

Please sign in to comment.