Skip to content

Commit fe3c8f6

Browse files
author
Tobias Kopp
committed
[Benchmark] Fix hyper timeout value
1 parent 8afa846 commit fe3c8f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/database_connectors/hyper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def execute(self, n_runs, params: dict()):
7575
except subprocess.TimeoutExpired:
7676
tqdm.write(f'Benchmark timed out after {timeout} seconds')
7777
# Set execution time of every case of every run to timeout
78-
times = [TIMEOUT_PER_CASE for _ in range(n_runs)]
78+
times = [TIMEOUT_PER_CASE*1000 for _ in range(n_runs)]
7979
result = {case: times for case in params['cases'].keys()}
8080
result = {f'HyPer{suffix}': result}
8181
return result

0 commit comments

Comments
 (0)