QuotaListExporter: Flip incorrect allow_repeatable_read

This commit is contained in:
Raphael Michel
2025-10-07 13:20:06 +02:00
parent 943f594b6b
commit 82eca01e5c

View File

@@ -1162,7 +1162,7 @@ class QuotaListExporter(ListExporter):
yield headers
quotas = list(self.event.quotas.select_related('subevent'))
qa = QuotaAvailability(full_results=True, allow_repeatable_read=False)
qa = QuotaAvailability(full_results=True, allow_repeatable_read=True)
qa.queue(*quotas)
qa.compute()