mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
SIGILL -> SIGKILL in process test
Fairly sure this was a typo. cc: @s0undt3ch
This commit is contained in:
parent
7f1654894d
commit
a6b7417fe9
1 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@ class TestProcessManager(TestCase):
|
|||
time.sleep(0.5)
|
||||
# Are there child processes still running?
|
||||
if process_manager._process_map.keys():
|
||||
process_manager.send_signal_to_processes(signal.SIGILL)
|
||||
process_manager.send_signal_to_processes(signal.SIGKILL)
|
||||
process_manager.stop_restarting()
|
||||
process_manager.kill_children()
|
||||
|
||||
|
@ -71,7 +71,7 @@ class TestProcessManager(TestCase):
|
|||
time.sleep(0.5)
|
||||
# Are there child processes still running?
|
||||
if process_manager._process_map.keys():
|
||||
process_manager.send_signal_to_processes(signal.SIGILL)
|
||||
process_manager.send_signal_to_processes(signal.SIGKILL)
|
||||
process_manager.stop_restarting()
|
||||
process_manager.kill_children()
|
||||
|
||||
|
@ -95,7 +95,7 @@ class TestProcessManager(TestCase):
|
|||
time.sleep(0.5)
|
||||
# Are there child processes still running?
|
||||
if process_manager._process_map.keys():
|
||||
process_manager.send_signal_to_processes(signal.SIGILL)
|
||||
process_manager.send_signal_to_processes(signal.SIGKILL)
|
||||
process_manager.stop_restarting()
|
||||
process_manager.kill_children()
|
||||
|
||||
|
@ -119,7 +119,7 @@ class TestProcessManager(TestCase):
|
|||
time.sleep(0.5)
|
||||
# Are there child processes still running?
|
||||
if process_manager._process_map.keys():
|
||||
process_manager.send_signal_to_processes(signal.SIGILL)
|
||||
process_manager.send_signal_to_processes(signal.SIGKILL)
|
||||
process_manager.stop_restarting()
|
||||
process_manager.kill_children()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue