From 39c20c1a7639ed5bfb1d036b095175cafdcb5f65 Mon Sep 17 00:00:00 2001 From: kali Date: Fri, 15 Feb 2013 07:50:56 +0900 Subject: do not be so hysteric when net fails --- src/leap/base/checks.py | 3 ++- src/leap/base/exceptions.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/leap/base/checks.py b/src/leap/base/checks.py index 0bf44f59..7a27f355 100644 --- a/src/leap/base/checks.py +++ b/src/leap/base/checks.py @@ -185,7 +185,8 @@ class LeapNetworkChecker(object): logger.debug('packet loss %s%%' % packet_loss) if packet_loss > constants.MAX_ICMP_PACKET_LOSS: - raise exceptions.NoConnectionToGateway + logger.warning("Packet LOSS = %s" % (packet_loss,)) + #raise exceptions.NoConnectionToGateway def check_name_resolution(self, domain_name): try: diff --git a/src/leap/base/exceptions.py b/src/leap/base/exceptions.py index 2e31b33b..3d8dde48 100644 --- a/src/leap/base/exceptions.py +++ b/src/leap/base/exceptions.py @@ -67,7 +67,7 @@ class NoDefaultInterfaceFoundError(LeapException): "is not connected to the internet") -class NoConnectionToGateway(CriticalError): +class NoConnectionToGateway(LeapException): message = "no connection to gateway" usermessage = translate( "Errors", @@ -75,7 +75,7 @@ class NoConnectionToGateway(CriticalError): "with your internet connection") -class NoInternetConnection(CriticalError): +class NoInternetConnection(LeapException): message = "No Internet connection found" usermessage = translate( "Errors", -- cgit v1.2.3