Skip to content

Commit

Permalink
fix(blocking): get_with_retry is private method
Browse files Browse the repository at this point in the history
  • Loading branch information
ValuedMammal committed Sep 25, 2024
1 parent 1542262 commit bfaa9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blocking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Response, Error> {
fn get_with_retry(&self, url: &str) -> Result<Response, Error> {
let mut delay = BASE_BACKOFF_MILLIS;
let mut attempts = 0;

Expand Down

0 comments on commit bfaa9ae

Please sign in to comment.