We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d3873a commit 12665e8Copy full SHA for 12665e8
ols/src/quota/revokable_quota_limiter.py
@@ -204,10 +204,10 @@ def _reconcile_quota_limits(self) -> None:
204
cursor.execute(
205
RevokableQuotaLimiter.RECONCILE_QUOTA_LIMITS,
206
(
207
- self.initial_quota, # new quota_limit
+ self.initial_quota, # new quota_limit
208
self.initial_quota, # used in calculation: available + (new - old)
209
- self.subject_type,
210
- self.initial_quota,
+ self.subject_type,
+ self.initial_quota,
211
),
212
)
213
updated_rows = cursor.fetchall()
0 commit comments