We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb32f4 commit cf2bf5bCopy full SHA for cf2bf5b
1 file changed
lychee-lib/src/ratelimit/host/host.rs
@@ -300,7 +300,8 @@ impl Host {
300
fn increase_backoff(&self, mut increased_backoff: Duration) {
301
if increased_backoff > MAXIMUM_BACKOFF {
302
warn!(
303
- "Encountered an unexpectedly big rate limit backoff duration of {}. Capping the duration to {} instead.",
+ "Host {} sent an unexpectedly big rate limit backoff duration of {}. Capping the duration to {} instead.",
304
+ self.key,
305
format_duration(increased_backoff),
306
format_duration(MAXIMUM_BACKOFF)
307
);
0 commit comments