Fix issue in previous commit

This commit is contained in:
Raphael Michel
2020-08-18 17:34:39 +02:00
parent 253f944951
commit fbd38fef58

View File

@@ -440,6 +440,5 @@ def refresh_quota_caches():
for qs in grouper(quotas, 100, None):
qa = QuotaAvailability(early_out=False)
for q in qs:
qa.queue([q for q in qs if q is not None])
qa.queue(*[q for q in qs if q is not None])
qa.compute()