Skip to content

Commit

Permalink
remove
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-desroches committed Dec 17, 2024
1 parent 131afc2 commit 7637c21
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions system/manager/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,11 @@ def manager_init() -> None:
def manager_cleanup() -> None:
# send signals to kill all procs
for p in managed_processes.values():
print('kill non-blocking: ', p.name)
p.stop(block=False)
print('kill non-blocking done: ', p.name)

# ensure all are killed
for p in managed_processes.values():
print('kill blocking: ', p.name)
p.stop(block=True)
print('kill blocking done: ', p.name)

cloudlog.info("everything is dead")

Expand Down

0 comments on commit 7637c21

Please sign in to comment.