From 14954cc0676395140156d455331f4ca428d58159 Mon Sep 17 00:00:00 2001 From: Otto van der Schaaf Date: Thu, 11 Jun 2020 22:32:11 +0200 Subject: [PATCH] minimize diff --- test/integration/test_integration_basics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/test_integration_basics.py b/test/integration/test_integration_basics.py index f57371aa6..7ef1894d5 100644 --- a/test/integration/test_integration_basics.py +++ b/test/integration/test_integration_basics.py @@ -124,7 +124,7 @@ def test_http_h2_mini_stress_test_without_client_side_queueing(http_test_server_ queueing. """ counters = mini_stress_test(http_test_server_fixture, [ - http_test_server_fixture.getTestServerRootUri(), "--rps", "1000", "--h2", + http_test_server_fixture.getTestServerRootUri(), "--rps", "999999", "--h2", "--max-active-requests", "1", "--connections", "1", "--duration", "100", "--termination-predicate", "benchmark.http_2xx:99" ]) @@ -138,7 +138,7 @@ def test_http_h1_mini_stress_test_open_loop(http_test_server_fixture): H1 open loop stress test. We expect higher pending and overflow counts """ counters = mini_stress_test(http_test_server_fixture, [ - http_test_server_fixture.getTestServerRootUri(), "--rps", "10000", "--max-pending-requests", + http_test_server_fixture.getTestServerRootUri(), "--rps", "999999", "--max-pending-requests", "1", "--open-loop", "--max-active-requests", "1", "--connections", "1", "--duration", "100", "--termination-predicate", "benchmark.http_2xx:99", "--simple-warmup" ])