gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [ascension] branch master updated: fixed not publicly resol


From: gnunet
Subject: [GNUnet-SVN] [ascension] branch master updated: fixed not publicly resolvable domain
Date: Wed, 01 May 2019 13:07:41 +0200

This is an automated email from the git hooks/post-receive script.

rexxnor pushed a commit to branch master
in repository ascension.

The following commit(s) were added to refs/heads/master by this push:
     new bd79b19  fixed not publicly resolvable domain
bd79b19 is described below

commit bd79b197c935a45bf2e51afc4dc19665223f1df8
Author: rexxnor <address@hidden>
AuthorDate: Wed May 1 13:07:08 2019 +0200

    fixed not publicly resolvable domain
---
 ascension/ascension.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/ascension/ascension.py b/ascension/ascension.py
index 93c56c9..423f39e 100644
--- a/ascension/ascension.py
+++ b/ascension/ascension.py
@@ -129,11 +129,11 @@ class Ascender():
         try:
             soa_answer = dns.resolver.query(domain, 'SOA')
         except dns.resolver.NoAnswer:
-            logging.critical("the domain '%s' does not exist", domain)
-            sys.exit(1)
+            logging.warning("the domain '%s' is not publicly resolvable",
+                            domain)
         except dns.resolver.NXDOMAIN:
-            logging.critical("the domain '%s' is invalid", domain)
-            sys.exit(1)
+            logging.warning("the domain '%s' is not publicly resolvable",
+                            domain)
         master_answer = dns.resolver.query(soa_answer[0].mname, 'A')
         try:
             if resolver:

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]