Skip to content

Commit 7637c21

Browse files
remove
1 parent 131afc2 commit 7637c21

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

system/manager/manager.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,11 @@ def manager_init() -> None:
102102
def manager_cleanup() -> None:
103103
# send signals to kill all procs
104104
for p in managed_processes.values():
105-
print('kill non-blocking: ', p.name)
106105
p.stop(block=False)
107-
print('kill non-blocking done: ', p.name)
108106

109107
# ensure all are killed
110108
for p in managed_processes.values():
111-
print('kill blocking: ', p.name)
112109
p.stop(block=True)
113-
print('kill blocking done: ', p.name)
114110

115111
cloudlog.info("everything is dead")
116112

0 commit comments

Comments
 (0)