From: Michael Tremer <michael.tremer@ipfire.org>
To: ddns@lists.ipfire.org
Subject: [PATCH] Catch 'Internal Server Error' on update
Date: Sat, 04 Jul 2015 12:25:17 +0200 [thread overview]
Message-ID: <1436005517-19955-1-git-send-email-michael.tremer@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1164 bytes --]
When there is an internal server error, we won't log an error
and hold off updates for a while. This is an error on the
provider's side and the client must retry in order to update
the hostname.
This error was seen with selfhost.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/ddns/providers.py | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index fc1fb82..9eaaa6c 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -161,10 +161,13 @@ class DDNSProvider(object):
try:
self.update()
- # Catch network errors early, because we do not want to log
+ # 1) 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:
+ # 2) If there is an internet server error (HTTP code 500) on the
+ # provider's site, we will not log a failure and try again
+ # shortly.
+ except (DDNSNetworkError, DDNSInternalServerError):
raise
# In case of any errors, log the failed request and
--
2.4.4
reply other threads:[~2015-07-04 10:25 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=1436005517-19955-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