From 7e298c025da08d0de096df3fcac7c8fafac9f5c2 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Tue, 27 Aug 2019 17:11:21 +0200 Subject: remove verbosity argument from hooks --- src/benchmarks/httpd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/benchmarks/httpd.py') diff --git a/src/benchmarks/httpd.py b/src/benchmarks/httpd.py index b63f675..d981233 100644 --- a/src/benchmarks/httpd.py +++ b/src/benchmarks/httpd.py @@ -22,7 +22,8 @@ class BenchmarkHTTPD(Benchmark): super().__init__() - def process_output(self, result, stdout, stderr, allocator, perm, verbose): + @staticmethod + def process_output(result, stdout, stderr, allocator, perm): result["time"] = re.search("Time taken for tests:\\s*(\\d*\\.\\d*) seconds", stdout).group(1) result["requests"] = re.search("Requests per second:\\s*(\\d*\\.\\d*) .*", stdout).group(1) -- cgit v1.2.3