Skip to content

Commit

Permalink
Fix script
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Jan 11, 2025
1 parent cf635b3 commit 902d9db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/cluster_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def get_server_version(server_name):
)
version_output = result.stdout
version_match = re.search(
r"(?:Redis|Valkey) server v=(\d+\.\d+\.\d+)", version_output, re.IGNORECASE
r"server v=(\d+\.\d+\.\d+)", version_output, re.IGNORECASE
)
if version_match:
return tuple(map(int, version_match.group(1).split(".")))
Expand Down

0 comments on commit 902d9db

Please sign in to comment.