From d7886a1281a0379ea66cf43e8fd6ba0128481070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Sat, 3 Jul 2021 12:58:26 +0200 Subject: [PATCH] adding fixes on closing tunnel --- client-py3/full/src/UDSClientLauncher.py | 1 + 1 file changed, 1 insertion(+) diff --git a/client-py3/full/src/UDSClientLauncher.py b/client-py3/full/src/UDSClientLauncher.py index 656e08d9..3ee9b985 100644 --- a/client-py3/full/src/UDSClientLauncher.py +++ b/client-py3/full/src/UDSClientLauncher.py @@ -28,6 +28,7 @@ class UdsApplication(QtWidgets.QApplication): def closeTunnels(self) -> None: logger.debug('Closing remaining tunnels') for tunnel in self.tunnels: + logger.debug('Checking %s - "%s"', tunnel, tunnel.poll()) if tunnel.poll() is None: # Running logger.info('Found running tunnel %s, closing it', tunnel.pid) tunnel.kill()