diff options
author | antialias <antialias@leap.se> | 2012-09-28 18:16:47 -0400 |
---|---|---|
committer | antialias <antialias@leap.se> | 2012-09-28 18:16:47 -0400 |
commit | 58344bb28c1c0f25ed37624ff487cc8f24821d52 (patch) | |
tree | 873a8225862e20124ee69af7c509772dab952674 /src/leap/baseapp/eip.py | |
parent | 202345940e12d4633c5d46d5ed21c3a433573d48 (diff) |
Functionality to shutdown network checker when openvpn is stopped.
But thread not being successfully killed.
Diffstat (limited to 'src/leap/baseapp/eip.py')
-rw-r--r-- | src/leap/baseapp/eip.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/leap/baseapp/eip.py b/src/leap/baseapp/eip.py index b0e14be7..ad074abc 100644 --- a/src/leap/baseapp/eip.py +++ b/src/leap/baseapp/eip.py @@ -224,9 +224,11 @@ class EIPConductorAppMixin(object): # we could bring Timer Init to this Mixin # or to its own Mixin. self.timer.start(constants.TIMER_MILLISECONDS) + self.network_checker.start() return if self.eip_service_started is True: + self.network_checker.stop() self.conductor.disconnect() if self.debugmode: self.startStopButton.setText('&Connect') |