Improved shutdown handling for local shared instances

This commit is contained in:
Mark Qvist 2021-09-24 16:42:31 +02:00
parent 3d4ac0126b
commit 7e9d608530
3 changed files with 50 additions and 3 deletions

View file

@ -1427,6 +1427,9 @@ class Transport:
for interface in Transport.interfaces:
interface.detach()
for interface in Transport.local_client_interfaces:
interface.detach()
@staticmethod
def exit_handler():