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;