From 2d14f8e9f0958c91ca04c568b2d70fd675552e5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florent=20Thi=C3=A9ry?= <florent.thiery@ubicast.eu> Date: Fri, 24 Feb 2017 09:41:49 +0100 Subject: [PATCH] fix typo --- tests/test_mediaworker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mediaworker.py b/tests/test_mediaworker.py index 5557ad28..aa8b3aad 100755 --- a/tests/test_mediaworker.py +++ b/tests/test_mediaworker.py @@ -49,7 +49,7 @@ def run_tests(ip): def check_celerity_connectivity(ip): 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) d = subprocess.check_output(cmd, shell=True, timeout=5) if "Celerity tasks server" in d: -- GitLab