public inbox for ddns@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] Zoneedit: Provide better error message on error 702 responses.
@ 2016-04-29 11:53 Stefan Schantl
  2016-04-29 12:06 ` Michael Tremer
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Schantl @ 2016-04-29 11:53 UTC (permalink / raw)
  To: ddns

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

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..dbe9261 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


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-04-29 12:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-29 11:53 [PATCH] Zoneedit: Provide better error message on error 702 responses Stefan Schantl
2016-04-29 12:06 ` Michael Tremer
2016-04-29 12:32   ` Stefan Schantl
2016-04-29 12:35     ` [PATCHv2] " Stefan Schantl
2016-04-29 12:36       ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox