Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xdnw committed Sep 4, 2024
1 parent dbad1a1 commit 92e59cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ private void handleRateLimit() {
sleepMs = Math.min(sleepMs, 60 * 1000);
Logg.text("Pausing API requests to avoid being rate limited:\n" +
"- Limit: " + rateLimitGlobal.limit + "\n" +
"- Retry After: " + sleepMs + "msg");
"- Retry After: " + sleepMs + "ms");
Thread.sleep(sleepMs + 1000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
Expand Down

0 comments on commit 92e59cd

Please sign in to comment.