core/simple_lister: Use bigger batch of data
This commit is contained in:
parent
3a65fbb4c8
commit
34eddb1fd7
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class SimpleLister(SWHListerBase):
|
|||
models_list = self.filter_before_inject(models_list)
|
||||
from swh.core import utils
|
||||
all_injected = []
|
||||
for models in utils.grouper(models_list, n=1000):
|
||||
for models in utils.grouper(models_list, n=10000):
|
||||
models = list(models)
|
||||
logging.debug('models: %s' % len(models))
|
||||
# inject into local db
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue