diff options
Diffstat (limited to 'src/leap/bitmask/gui/mainwindow.py')
| -rw-r--r-- | src/leap/bitmask/gui/mainwindow.py | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py index 70fad204..681432b3 100644 --- a/src/leap/bitmask/gui/mainwindow.py +++ b/src/leap/bitmask/gui/mainwindow.py @@ -2068,9 +2068,12 @@ class MainWindow(QtGui.QMainWindow):          logger.debug('Terminating vpn')          self._backend.stop_eip(shutdown=True) -        # XXX this *has* to block, since we have some delay in vpn.terminate -        # it should receive a signal from backend that everything is clear to -        # proceed, or timeout happened. +        # XXX this *has* to wait for a reasonable lapse, since we have some +        # delay in vpn.terminate. +        # For a better solution it should receive be +        # signaled from backend that +        # everything is clear to proceed, or timeout happened. +        time.sleep(1.5)          self._cancel_ongoing_defers()  | 
