retry_policy: verbose logging for io errors (#1894)

may contain information necessary for triaging the issue.
This commit is contained in:
thewisenerd 2024-11-05 05:42:06 +05:30 коммит произвёл GitHub
Родитель 167fef479c
Коммит 7c3d354b13
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -174,7 +174,7 @@ where
Err(error) => {
if error.kind() == &ErrorKind::Io {
debug!(
"io error occurred when making request which will be retried: {}",
"io error occurred when making request which will be retried: {:?}",
error
);
// IO error so no Retry-After headers - leave the retry period up to the policy