diff --git a/etc/ci/performance/runner.py b/etc/ci/performance/runner.py index d34b9e49312..690a7445333 100644 --- a/etc/ci/performance/runner.py +++ b/etc/ci/performance/runner.py @@ -28,8 +28,7 @@ def execute_test(url, command, timeout): print(' '.join(command)) print("Timeout:{}".format(timeout)) try: - return subprocess.check_output(command, stderr=subprocess.STDOUT, - shell=True, timeout=timeout) + return subprocess.check_output(command, stderr=subprocess.STDOUT, timeout=timeout) except subprocess.CalledProcessError as e: print("Unexpected Fail:") print(e)