Skip to content
Snippets Groups Projects
Commit 2d14f8e9 authored by Florent Thiery's avatar Florent Thiery
Browse files

fix typo

parent bb2b4348
No related branches found
No related tags found
No related merge requests found
...@@ -49,7 +49,7 @@ def run_tests(ip): ...@@ -49,7 +49,7 @@ def run_tests(ip):
def check_celerity_connectivity(ip): def check_celerity_connectivity(ip):
h = conf.get('MS_SERVER_NAME') h = conf.get('MS_SERVER_NAME')
cmd = "ssh %i curl -k https://%s:6200" % (ip, h) cmd = "ssh %s curl -k https://%s:6200" % (ip, h)
print('Checking celerity connectivity: %s' % cmd) print('Checking celerity connectivity: %s' % cmd)
d = subprocess.check_output(cmd, shell=True, timeout=5) d = subprocess.check_output(cmd, shell=True, timeout=5)
if "Celerity tasks server" in d: if "Celerity tasks server" in d:
......
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