From 85740af2545677ea4e7b86de0c12c65cedba141b Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Sat, 8 Jun 2024 15:28:03 +0200 Subject: [PATCH] wip --- scripts/ci/e2e_benchmark.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/ci/e2e_benchmark.py b/scripts/ci/e2e_benchmark.py index a0a63b763..4fc900eb9 100644 --- a/scripts/ci/e2e_benchmark.py +++ b/scripts/ci/e2e_benchmark.py @@ -32,8 +32,6 @@ class BenchmarkRunner: for _ in range(num_requests): url = self.make_url(host, benchmark_name) - _ = requests.get(url) # warmup - start_time = time.time() response = requests.get(url) end_time = time.time()