Increase batch size for playstates by a factor 10
This commit is contained in:
parent
2234e49cf8
commit
01c0c36244
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue