Merge pull request #302 from wlach/1112749

Only process objects for each repo once
This commit is contained in:
camd 2014-12-17 13:36:12 -08:00
Родитель ae5d05fe02 25c57749a8
Коммит 1e30f7ba77
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -17,7 +17,7 @@ def process_objects(limit=None):
"""
# default limit to 100
limit = limit or 100
for ds in Datasource.objects.all():
for ds in Datasource.objects.filter(contenttype='objectstore'):
jm = JobsModel(ds.project)
try:
jm.process_objects(limit)