diff --git a/pyproject.toml b/pyproject.toml index 061e361..9fbb39f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "redisbench-admin" -version = "0.2.8" +version = "0.2.9" description = "Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... )." authors = ["filipecosta90 "] readme = "README.md" diff --git a/redisbench_admin/run_remote/run_remote.py b/redisbench_admin/run_remote/run_remote.py index 7daf85d..f28f126 100644 --- a/redisbench_admin/run_remote/run_remote.py +++ b/redisbench_admin/run_remote/run_remote.py @@ -285,9 +285,9 @@ def run_remote_command_logic(args): if args.push_results_redistimeseries: logging.info("Checking connection to RedisTimeSeries.") rts = Client( - host=args.redistimesies_host, - port=args.redistimesies_port, - password=args.redistimesies_pass, + host=args.redistimeseries_host, + port=args.redistimeseries_port, + password=args.redistimeseries_pass, ) rts.redis.ping() for repetition in range(1, BENCHMARK_REPETITIONS + 1):