Skip to content

Commit deb9564

Browse files
Fix.watchdog.rts.args (#164)
* [fix] Fixed watchdog redistimeseries args parsing * Bumping version from 0.3.4 to 0.3.5
1 parent ebf84b6 commit deb9564

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.3.4"
3+
version = "0.3.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/watchdog/watchdog.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ def watchdog_command_logic(args, project_name, project_version):
109109
)
110110
logging.info("Checking connection to RedisTimeSeries.")
111111
rts = Client(
112-
host=args.redistimesies_host,
113-
port=args.redistimesies_port,
114-
password=args.redistimesies_pass,
112+
host=args.redistimeseries_host,
113+
port=args.redistimeseries_port,
114+
password=args.redistimeseries_pass,
115115
)
116116
rts.redis.ping()
117117
ec2_client = boto3.client("ec2")

0 commit comments

Comments
 (0)