浏览代码

wip: un-daemon tesseractnetwork

justheuristic 5 年之前
父节点
当前提交
4cfbc058d1
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      tesseract/network/__init__.py

+ 1 - 0
tesseract/network/__init__.py

@@ -48,6 +48,7 @@ class TesseractNetwork(mp.Process):
 
     def shutdown(self) -> None:
         """ Shuts down the network process """
+        print('!shutdown called', self.is_alive(), flush=True)
         if self.is_alive():
             self.terminate()
         else: