Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

S3 200 errors implementation #3276

Merged
merged 20 commits into from
Oct 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update botocore/handlers.py
Co-authored-by: Nate Prewitt <nate.prewitt@gmail.com>
  • Loading branch information
alexgromero and nateprewitt authored Oct 17, 2024
commit 0fdbd8220dc8d77206ba43698de55189b6ebc8bf
4 changes: 1 addition & 3 deletions botocore/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1255,9 +1255,7 @@ def _handle_200_error(operation_model, response_dict, **kwargs):
):
response_dict['status_code'] = 500
logger.debug(
f"Error found for response with 200 status code: {response_dict['body']}. "
f"Changing the http_response status code to 500 will be propagated in "
f"the _retry_200_error handler."
f"Error found for response with 200 status code: {response_dict['body']}."
)


Expand Down
Loading