Skip to content

Commit ae9edf9

Browse files
committed
Merge #100: fix(blocking): get_with_retry is private method
bfaa9ae fix(blocking): `get_with_retry` is private method (valued mammal) Pull request description: Clean up after #98 which accidentally exposed `get_with_retry` publicly for the blocking client. ACKs for top commit: oleonardolima: ACK bfaa9ae Tree-SHA512: 33abd34e919e27069107947c34915b9de3547ab1d78291841f2052552abd23fd59621ee6ae3ed9bd8e3eda608c2e5b9285529df1dcba8a4a1705ca1f1491c136
2 parents 1542262 + bfaa9ae commit ae9edf9

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)