MCPcopy Create free account
hub / github.com/apache/impala / kill_and_wait_for_exit

Method kill_and_wait_for_exit

tests/common/impala_cluster.py:548–551  ·  view source on GitHub ↗

Kill the process and wait for it to exit

(self, signal=SIGKILL)

Source from the content-addressed store, hash-verified

546 sleep(0.01)
547
548 def kill_and_wait_for_exit(self, signal=SIGKILL):
549 """Kill the process and wait for it to exit"""
550 self.kill(signal)
551 self.wait_for_exit()
552
553 def modify_argument(self, argument, new_value):
554 """Modify the 'argument' in start args with new_value.

Calls 2

killMethod · 0.95
wait_for_exitMethod · 0.95