fix(oauth): reset rate limit earlier in refresh cycle

This commit is contained in:
Matthew Esposito
2024-06-26 22:16:41 -04:00
parent d045a5760a
commit 2e476dea63
2 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,6 @@ pub async fn token_daemon() {
pub async fn force_refresh_token() {
trace!("Rolling over refresh token. Current rate limit: {}", OAUTH_RATELIMIT_REMAINING.load(Ordering::Relaxed));
OAUTH_CLIENT.write().await.refresh().await;
OAUTH_RATELIMIT_REMAINING.store(99, Ordering::Relaxed);
}
#[derive(Debug, Clone, Default)]