Implement testing the removal of IO pipes on server stop
This commit is contained in:
@ -55,5 +55,6 @@ class PipeIOServer(ABC):
|
||||
|
||||
def stop(self):
|
||||
for thread in self._io_threads:
|
||||
thread.stop()
|
||||
if thread.isAlive():
|
||||
thread.stop()
|
||||
PipeHandler(self.in_pipe, self.out_pipe).remove()
|
||||
|
Reference in New Issue
Block a user