From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl <stefan.schantl@ipfire.org> To: ddns@lists.ipfire.org Subject: [PATCHv2] Zoneedit: Provide better error message on error 702 responses. Date: Fri, 29 Apr 2016 14:35:02 +0200 Message-ID: <1461933302-24640-1-git-send-email-stefan.schantl@ipfire.org> In-Reply-To: <1461933160.23498.2.camel@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7141525244291376339==" List-Id: <ddns.lists.ipfire.org> --===============7141525244291376339== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit A returned error code 702 when using Zoneedit as provider now raise a request error with an corresponding message instead of a simple InternalServerError exception. This will help to clarify and debug update problems. Fixes #11042. Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org> --- src/ddns/providers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 3845193..c653aa5 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -1576,7 +1576,7 @@ class DDNSProviderZoneedit(DDNSProvider): elif output.startswith("<ERROR CODE=\"704\""): raise DDNSRequestError(_("No valid FQDN was given.")) elif output.startswith("<ERROR CODE=\"702\""): - raise DDNSInternalServerError + raise DDNSRequestError(_("Too frequent update requests have been sent.")) # If we got here, some other update error happened. raise DDNSUpdateError -- 2.5.5 --===============7141525244291376339==--