public inbox for ddns@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: ddns@lists.ipfire.org
Subject: [PATCH 1/2] Catch "no route to host" errors
Date: Tue, 23 Jun 2015 22:34:32 +0000	[thread overview]
Message-ID: <1435098873-14208-1-git-send-email-michael.tremer@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1185 bytes --]

When there is no route to a target host, we will throw
a DDNSNetworkError so that this error can be handled afterwards.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 src/ddns/errors.py | 7 +++++++
 src/ddns/system.py | 4 ++++
 2 files changed, 11 insertions(+)

diff --git a/src/ddns/errors.py b/src/ddns/errors.py
index 293b4eb..26bc18e 100644
--- a/src/ddns/errors.py
+++ b/src/ddns/errors.py
@@ -109,6 +109,13 @@ class DDNSNetworkUnreachableError(DDNSNetworkError):
 	reason = N_("Network unreachable")
 
 
+class DDNSNoRouteToHostError(DDNSNetworkError):
+	"""
+		Thrown when there is no route to a host.
+	"""
+	reason = N_("No route to host")
+
+
 class DDNSNotFound(DDNSError):
 	"""
 		Thrown when the called URL has not been found
diff --git a/src/ddns/system.py b/src/ddns/system.py
index 8415579..6a21af8 100644
--- a/src/ddns/system.py
+++ b/src/ddns/system.py
@@ -211,6 +211,10 @@ class DDNSSystem(object):
 				elif e.reason.errno == 111:
 					raise DDNSConnectionRefusedError
 
+				# No route to host
+				elif e.reason.errno == 113:
+					raise DDNSNoRouteToHostError(req.host)
+
 			# Raise all other unhandled exceptions.
 			raise
 
-- 
1.8.1


             reply	other threads:[~2015-06-23 22:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-23 22:34 Michael Tremer [this message]
2015-06-23 22:34 ` [PATCH 2/2] Soft-fail on network errors Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1435098873-14208-1-git-send-email-michael.tremer@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=ddns@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox