diff --git a/rust-runtime/aws-smithy-http-server/examples/pokemon_service/tests/benchmark.rs b/rust-runtime/aws-smithy-http-server/examples/pokemon_service/tests/benchmark.rs index d9139d9a94ed4a672880fa674929f9c414314a0c..e812825fdf83477d213ce3666e088b3080ab3e96 100644 --- a/rust-runtime/aws-smithy-http-server/examples/pokemon_service/tests/benchmark.rs +++ b/rust-runtime/aws-smithy-http-server/examples/pokemon_service/tests/benchmark.rs @@ -37,9 +37,9 @@ async fn benchmark() -> Result<(), Box> { // Run a single benchmark with 8 threads and 64 connections for 60 seconds. let benches = vec![BenchmarkBuilder::default() - .duration(Duration::from_secs(60)) - .threads(8) - .connections(64) + .duration(Duration::from_secs(90)) + .threads(2) + .connections(32) .build()?]; wrk.bench(&benches)?;