Skip to content

Commit bfaa9ae

Browse files
committed
fix(blocking): get_with_retry is private method
1 parent 1542262 commit bfaa9ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blocking.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ impl BlockingClient {
349349

350350
/// Sends a GET request to the given `url`, retrying failed attempts
351351
/// for retryable error codes until max retries hit.
352-
pub fn get_with_retry(&self, url: &str) -> Result<Response, Error> {
352+
fn get_with_retry(&self, url: &str) -> Result<Response, Error> {
353353
let mut delay = BASE_BACKOFF_MILLIS;
354354
let mut attempts = 0;
355355

0 commit comments

Comments
 (0)