Skip to content
Snippets Groups Projects
Commit ed064b84 authored by Nicolas KAROLAK's avatar Nicolas KAROLAK
Browse files

fix custom port test

parent 3e1374a3
No related branches found
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ for s, d in conf_servers: ...@@ -59,7 +59,7 @@ for s, d in conf_servers:
# check if custom port is used # check if custom port is used
v_split = v.split(":") v_split = v.split(":")
if v_split > 1: if len(v_split) > 1:
server_name = v_split[0] server_name = v_split[0]
port = int(v_split[1]) port = int(v_split[1])
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment