Skip to content

Commit 6544380

Browse files
authored
feat: set "error sending request for url" as transient (#2332)
1 parent 3f6d365 commit 6544380

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/sdk/src/network/retry.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ where
101101
error_msg.contains("transport error") ||
102102
error_msg.contains("failed to lookup") ||
103103
error_msg.contains("timeout") ||
104-
error_msg.contains("deadline exceeded");
104+
error_msg.contains("deadline exceeded") ||
105+
error_msg.contains("error sending request for url");
105106

106107
if is_transient {
107108
tracing::warn!(

0 commit comments

Comments
 (0)