We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d3944a commit 05d7720Copy full SHA for 05d7720
dev/run-tests.py
@@ -241,8 +241,7 @@ def kill_zinc_on_port(zinc_port):
241
"""
242
cmd = ("/usr/sbin/lsof -P |grep %s | grep LISTEN "
243
"| awk '{ print $2; }' | xargs kill") % zinc_port
244
- # TODO: Not sure what happens here if no process exists
245
- run_cmd(cmd)
+ subprocess.check_call(cmd, shell=True)
246
247
248
def exec_maven(mvn_args=()):
0 commit comments