crepererum commented on code in PR #5294:
URL: https://github.com/apache/arrow-rs/pull/5294#discussion_r1448611109
##########
object_store/src/client/retry.rs:
##########
@@ -246,7 +246,13 @@ impl RetryExt for reqwest::RequestBuilder {
let sleep = backoff.next();
retries += 1;
- info!("Encountered server error, backing off for
{} seconds, retry {} of {}", sleep.as_secs_f32(), retries, max_retries);
+ info!(
+ "Encountered server error ({}), backing off
for {} seconds, retry {} of {}: {}",
+ e,
+ sleep.as_secs_f32(),
+ retries,
+ max_retries,
+ );
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]