429 RESOURCE_EXHAUSTED locally, but works on server (same account, quota 100%) antigravity #194539
Replies: 3 comments 2 replies
-
|
This doesn’t look like a quota problem, especially since your account shows 100% available and everything works fine on your server. A HTTP 429 RESOURCE_EXHAUSTED error in this case is usually caused by rate limiting or request throttling, and the fact that it only happens on your local machine strongly suggests an environment or network-related issue. Your local IP may be temporarily throttled or flagged, while your server IP (Netherlands) is not affected, so it's most likely a IP-based rate limiting Things you can try:
If none of these help, I’d recommend sending the TraceID and logs to support, since they can confirm whether your local IP is being rate-limited or blocked. Your configuration seems fine, this is very likely network or IP-level throttling rather than a tool issue. |
Beta Was this translation helpful? Give feedback.
-
|
how to add copilot to visual studio code? |
Beta Was this translation helpful? Give feedback.
-
|
This doesn’t look like a quota issue at all. A 429 error usually means you’re hitting some kind of rate limit, not that you’ve run out of quota—especially since your account still shows 100% available and everything works fine on your server. The key clue is that it only fails on your local machine but works on your Netherlands server. That almost always points to something IP-related. Your server IP is probably clean and not affected, which is why it works there. Another thing to double-check is your local request behavior. Sometimes locally there’s: which can trigger rate limits very quickly even if the same code seems fine elsewhere. add a small delay or exponential backoff on retries, |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Question
Body
Not sure if this is the right place, please redirect if needed.
Hi, I’m experiencing an issue with Antigravity.
On my local machine I consistently receive:
HTTP 429 RESOURCE_EXHAUSTED
However, the exact same setup works perfectly on my server (located in the Netherlands).
Details:
Behavior:
This suggests the issue is not related to quota itself.
Things I already tried:
Question:
Could this be caused by:
If needed, I can provide TraceID and additional logs.
Any help would be appreciated 🙏
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions