You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ The final parameters of the SDK builder are optional and will use default values
28
28
|Minimum Request Retry Random Delay|Shopify SDK uses a random wait strategy when calculating to perform the next attempt. This is the minimum duration to wait before performing the failed request.|1 second|
29
29
|Maximum Request Retry Random Delay|Shopify SDK uses a random wait strategy when calculating to perform the next attempt. This is the maximum duration to wait before performing the failed request.|5 seconds|
30
30
|Maximum Request Retry Timeout|The maximum time to keep retrying failed requests.|3 minutes|
31
-
|Connection Timeout|The duration to attempt to read a response from Shopify's API.|1 minute|
31
+
|Connection Timeout|The duration to attempt to connect to Shopify's API.|1 minute|
32
32
|Read Timeout|The duration to attempt to read a response from Shopify's API.|15 Seconds|
privatestaticfinalStringRETRY_EXCEPTION_ATTEMPT_MESSAGE = "An exception occurred while making an API call to shopifyon attempt number {} and {} seconds since first attempt with exception {}";
931
+
privatestaticfinalStringRETRY_EXCEPTION_ATTEMPT_MESSAGE = "An exception occurred while making an API call to shopify: {} on attempt number {} and {} seconds since first attempt";
935
932
privatestaticfinalStringRETRY_INVALID_RESPONSE_ATTEMPT_MESSAGE = "Waited {} seconds since first retry attempt. This is attempt {}. Please review the following failed request information.\nRequest Location of {}\nResponse Status Code of {}\nResponse Headers of:\n{}\nResponse Body of:\n{}";
936
933
934
+
privateStringresponseBody;
935
+
937
936
@Override
938
937
public <V> voidonRetry(finalAttempt<V> attempt) {
939
-
if (LOGGER.isWarnEnabled() && attempt.hasResult()) {
0 commit comments