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 7dcd340 commit 9c87f54Copy full SHA for 9c87f54
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+# Unreleased
2
+- Resume timeouts on error
3
+
4
# v0.38.4
5
- Add ixp cm packages
6
- Round trip choice fields in entity defs
api/src/lib.rs
@@ -1568,6 +1568,9 @@ impl Client {
1568
// This is for the case where some sort of network config (e.g. cloudflare) blocks
1569
// the request and returns invalid content
1570
true
1571
+ } else if let Error::ReqwestError { source, .. } = error {
1572
+ // Should split timeouts
1573
+ source.is_timeout()
1574
} else {
1575
false
1576
}
0 commit comments