Skip to content

Commit

Permalink
Fix the 403 retry error
Browse files Browse the repository at this point in the history
Follow-up for #1131

Signed-off-by: Sergey Vasilyev <[email protected]>
  • Loading branch information
nolar committed Dec 13, 2024
1 parent c158bae commit 49387eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/apis/test_error_retries.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async def test_regular_errors_escalate_without_retries(
assert_logs([], prohibited=["attempt", "escalating", "retry"])


@pytest.mark.parametrize('status', [400, 403, 404, 499, 666, 999])
@pytest.mark.parametrize('status', [400, 404, 499, 666, 999])
async def test_client_errors_escalate_without_retries(
caplog, assert_logs, settings, logger, resp_mocker, aresponses, hostname, status):
caplog.set_level(0)
Expand Down

0 comments on commit 49387eb

Please sign in to comment.