fix clippy error

This commit is contained in:
monosans
2026-03-06 12:00:35 +03:00
parent 1191a57a36
commit 6b58df560b
+1 -1
View File
@@ -112,7 +112,7 @@ fn calculate_retry_timeout(
if let Some(h) = headers
&& let Some(after) = parse_retry_after(h)
{
if after > Duration::from_secs(60) {
if after > Duration::from_mins(1) {
return None;
}
return Some(after);