This commit is contained in:
PRABHU KIRAN VANDRANKI 2026-09-15 00:34:07 +09:00 committed by GitHub
commit 9695033751
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5289,7 +5289,7 @@ async def _team_max_budget_check(
max_budget=team_object.max_budget,
)
if math.isfinite(team_object.max_budget) and spend > team_object.max_budget:
if math.isfinite(team_object.max_budget) and spend >= team_object.max_budget:
if valid_token:
call_info: Final = CallInfo(
token=valid_token.token,