GitHub rate limit exceeded #2458
Replies: 1 comment
-
|
Hey @qualified-charlie , Root cause: mise is making unauthenticated requests to the GitHub API to fetch RustFS release info, and hitting the 60 req/hour anonymous limit. Fix — set a GitHub token: Option 1 — export in your shellexport GITHUB_TOKEN=ghp_your_token_here Option 2 — use mise-specific env varexport MISE_GITHUB_TOKEN=ghp_your_token_here Create a token at github.com/settings/tokens — you do not need to give this token any scopes. Set it as GITHUB_TOKEN in your environment. (GitHub) To make it permanent, add it to ~/.bashrc or ~/.zshrc. With an authenticated token, the rate limit jumps from 60 to 5,000 requests/hour. If you just need to wait, the error already tells you the reset time: Resets at 2026-01-09 14:27:43 — just wait until then. If this helped you, please mark it as the answer — it helps others in the community who run into the same issue find the solution faster! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
mise WARN GitHub rate limit exceeded. Resets at 2026-01-09 14:27:43 -03:00 mise ERROR failed to rebuild shims mise ERROR HTTP status client error (403 rate limit exceeded) for url (https://api.github.com/repos/rustfs/rustfs/releases) mise ERROR Run with --verbose or MISE_VERBOSE=1 for more informationBeta Was this translation helpful? Give feedback.
All reactions