|
@@ -49,7 +49,7 @@ class TesseractNetwork(mp.Process):
|
|
def shutdown(self) -> None:
|
|
def shutdown(self) -> None:
|
|
""" Shuts down the network process """
|
|
""" Shuts down the network process """
|
|
if self.is_alive():
|
|
if self.is_alive():
|
|
- self.terminate()
|
|
|
|
|
|
+ self.kill()
|
|
else:
|
|
else:
|
|
warnings.warn("Network shutdown has no effect: network process is already not alive")
|
|
warnings.warn("Network shutdown has no effect: network process is already not alive")
|
|
|
|
|