Skip to content

Commit 4295afe

Browse files
[fix] fixed redistimeseries_* args (#138)
1 parent a997803 commit 4295afe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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.8"
3+
version = "0.2.9"
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,9 +285,9 @@ def run_remote_command_logic(args):
285285
if args.push_results_redistimeseries:
286286
logging.info("Checking connection to RedisTimeSeries.")
287287
rts = Client(
288-
host=args.redistimesies_host,
289-
port=args.redistimesies_port,
290-
password=args.redistimesies_pass,
288+
host=args.redistimeseries_host,
289+
port=args.redistimeseries_port,
290+
password=args.redistimeseries_pass,
291291
)
292292
rts.redis.ping()
293293
for repetition in range(1, BENCHMARK_REPETITIONS + 1):

0 commit comments

Comments
 (0)