From bfaa9ae546e4087c1a81c653333ee9b1c949e0ce Mon Sep 17 00:00:00 2001 From: valued mammal Date: Wed, 25 Sep 2024 09:20:42 -0400 Subject: [PATCH] fix(blocking): `get_with_retry` is private method --- src/blocking.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocking.rs b/src/blocking.rs index e9f51b7..dc86a38 100644 --- a/src/blocking.rs +++ b/src/blocking.rs @@ -349,7 +349,7 @@ impl BlockingClient { /// Sends a GET request to the given `url`, retrying failed attempts /// for retryable error codes until max retries hit. - pub fn get_with_retry(&self, url: &str) -> Result { + fn get_with_retry(&self, url: &str) -> Result { let mut delay = BASE_BACKOFF_MILLIS; let mut attempts = 0;