From 1eaab3ce18cbf3c7c2d541c0f647d87fe99c1a06 Mon Sep 17 00:00:00 2001 From: sarendsen Date: Tue, 14 Nov 2023 11:15:14 +0100 Subject: [PATCH] fix: retry 401 on plex metadata --- src/plex_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plex_client.rs b/src/plex_client.rs index 1a303b5..c54e97b 100644 --- a/src/plex_client.rs +++ b/src/plex_client.rs @@ -363,7 +363,7 @@ impl PlexClient { .with(RetryTransientMiddleware::new_with_policy_and_strategy( ExponentialBackoff::builder() .retry_bounds( - Duration::from_millis(250), + Duration::from_millis(500), Duration::from_secs(2), ) .build_with_max_retries(3),