Skip to content

Commit 2042013

Browse files
Fixed benchmark repetitions range (#133)
* [add] Added by.branch time-series for benchmark_duration and dataset_load_duration metrics * Bumping version from 0.2.3 to 0.2.4 * [fix] fixed benchmark repetitions range * Bumping version from 0.2.4 to 0.2.5
1 parent b0c7027 commit 2042013

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisbench-admin"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... )."
55
authors = ["filipecosta90 <[email protected]>"]
66
readme = "README.md"

redisbench_admin/run_remote/run_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def run_remote_command_logic(args):
290290
password=args.redistimesies_pass,
291291
)
292292
rts.redis.ping()
293-
for repetition in range(1, BENCHMARK_REPETITIONS):
293+
for repetition in range(1, BENCHMARK_REPETITIONS + 1):
294294
for test_name, benchmark_config in benchmark_definitions.items():
295295
s3_bucket_path = get_test_s3_bucket_path(
296296
s3_bucket_name, test_name, tf_github_org, tf_github_repo

0 commit comments

Comments
 (0)