We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bac8892 commit e0c5261Copy full SHA for e0c5261
django_elasticache/cluster_utils.py
@@ -27,7 +27,7 @@ def get_cluster_info(host, port):
27
'version': '1.4.4'
28
}
29
"""
30
- client = Telnet(host, port)
+ client = Telnet(host, int(port))
31
client.write('version\n')
32
res = client.read_until('\r\n').strip()
33
version_list = res.split(' ')
0 commit comments