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 8f31f1d commit 6828d56Copy full SHA for 6828d56
sdk/src/client/ClientConfiguration.cc
@@ -66,7 +66,7 @@ bool DefaultRetryStrategy::shouldRetry(const Error & error, long attemptedRetrie
66
long responseCode = error.Status();
67
68
//http code
69
- if ((responseCode == 403 && error.Message().find("RequestTimeTooSkewed")) ||
+ if ((responseCode == 403 && error.Message().find("RequestTimeTooSkewed") != std::string::npos) ||
70
(responseCode > 499 && responseCode < 599)) {
71
return true;
72
}
0 commit comments