Skip to content

Commit

Permalink
Fix bug in patch
Browse files Browse the repository at this point in the history
  • Loading branch information
amoeba committed Jan 30, 2025
1 parent f17cb8f commit 0694138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/rtools/awssdk_ep.patch
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ index d7513cc3c..e390a8d4e 100644
}

- if (!success && !IsRequestProcessingEnabled() || !ContinueRequest(*request))
+ if (!success && (!IsRequestProcessingEnabled() || !ContinueRequest(*request)))
+ if ((!success && !IsRequestProcessingEnabled()) || !ContinueRequest(*request))
{
response->SetClientErrorType(CoreErrors::USER_CANCELLED);
response->SetClientErrorMessage("Request processing disabled or continuation cancelled by user's continuation handler.");
Expand Down

0 comments on commit 0694138

Please sign in to comment.