1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-14 11:58:02 +00:00

fix: cluster_mgr.py to use CLUSTER MYID (#3444)

This commit is contained in:
Shahar Mike 2024-08-05 10:29:31 +03:00 committed by GitHub
parent faea4eef45
commit 38fba1d398
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,7 +24,7 @@ class Node:
self.port = port
def update_id(node):
node.id = send_command(node, ["dflycluster", "myid"])
node.id = send_command(node, ["cluster", "myid"])
print(f"- ID {node.id}")