diff --git a/tests/test_mediaworker.py b/tests/test_mediaworker.py index 956c659c8c051904fe36ce97dc6991a5bc22b1b3..4c97102ef0c2df1d9267a431db6a1e07775a5434 100755 --- a/tests/test_mediaworker.py +++ b/tests/test_mediaworker.py @@ -74,6 +74,7 @@ def check_celerity_connectivity(ip): print('%sFailed to reach tasks server from MediaWorker "%s".%s' % (RED, ip, DEF)) return False + def check_mediaworker_in_whitelist(ip): nginx_vhosts_path = '/etc/nginx/sites-enabled' vhosts = os.listdir(nginx_vhosts_path) @@ -83,7 +84,7 @@ def check_mediaworker_in_whitelist(ip): with open(vhost_path, 'r') as f: d = f.read() if 'msuser_whitelist' in d: - if not ip in d: + if ip not in d: print('%sMediaWorker ip %s is not in %s whitelist%s' % (RED, ip, v, DEF)) return False return True @@ -101,8 +102,8 @@ for worker_ip in worker_ips.split(','): else: if not check_celerity_connectivity(worker_ip): all_ok = False - #if not run_tests(worker_ip): - # all_ok = False + # if not run_tests(worker_ip): + # all_ok = False if not check_mediaworker_in_whitelist(worker_ip): all_ok = False if not tested: