Skip to content

Commit

Permalink
chore: Ocsp timeout adjustment (#4866)
Browse files Browse the repository at this point in the history
  • Loading branch information
dougch authored Nov 21, 2024
1 parent 18857b1 commit 2a73f90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integrationv2/test_ocsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ def test_s2n_server_ocsp_response(managed_process, cipher, provider, other_provi
# it immediately after sending the message.
kill_marker = b"Sent: "

server = managed_process(S2N, server_options, timeout=2000)
server = managed_process(S2N, server_options, timeout=90)
client = managed_process(provider, client_options,
timeout=2000, kill_marker=kill_marker)
timeout=90, kill_marker=kill_marker)

for client_results in client.get_results():
client_results.assert_success()
Expand Down

0 comments on commit 2a73f90

Please sign in to comment.