Increase batch size for playstates by a factor 10

This commit is contained in:
croneter 2019-02-05 16:54:40 +01:00
parent 2234e49cf8
commit 01c0c36244

View file

@ -240,7 +240,7 @@ class FullSync(common.fullsync_mixin):
self.current_sync)
self.current += 1
self.update_progressbar()
if (i + 1) % BATCH_SIZE == 0:
if (i + 1) % (10 * BATCH_SIZE) == 0:
break
if last:
break