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 2/2] Soft-fail on network errors
Date: Tue, 23 Jun 2015 22:34:33 +0000	[thread overview]
Message-ID: <1435098873-14208-2-git-send-email-michael.tremer@ipfire.org> (raw)
In-Reply-To: <1435098873-14208-1-git-send-email-michael.tremer@ipfire.org>

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

When an update could not be performed because of a network
error (host unreachable/no route to host) we should not
log an error to the database and hold off updates for a
long time.

Those errors are usually caused by local configuration
errors and the servers of the providers should not be
bothered with update requests as those won't reach them
any way.

The client will try to resend the update at the next
update call.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 src/ddns/providers.py | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index 28b765b..fc1fb82 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -161,6 +161,12 @@ class DDNSProvider(object):
 		try:
 			self.update()
 
+		# Catch network errors early, because we do not want to log
+		# them to the database. They are usually temporary and caused
+		# by the client side, so that we will retry quickly.
+		except DDNSNetworkError as e:
+			raise
+
 		# In case of any errors, log the failed request and
 		# raise the exception.
 		except DDNSError as e:
-- 
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 [PATCH 1/2] Catch "no route to host" errors Michael Tremer
2015-06-23 22:34 ` Michael Tremer [this message]

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-2-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