less error msg clutter on nonexistant socketfile
authorBernhard Tittelbach <xro@realraum.at>
Sun, 20 Sep 2009 02:26:27 +0000 (02:26 +0000)
committerBernhard Tittelbach <xro@realraum.at>
Sun, 20 Sep 2009 02:26:27 +0000 (02:26 +0000)
update-web-status.py
update-xmpp-status.py

index a392e0e..e2eec66 100755 (executable)
@@ -197,6 +197,10 @@ RE_REQUEST = re.compile(r'Request: (\w+) (?:Card )?(.+)')
 RE_ERROR = re.compile(r'Error: (.+)')
 while True:
   try:
+    if not os.path.exists(socketfile):
+      logging.debug("Socketfile '%s' not found, waiting 5 secs" % socketfile)
+      time.sleep(5)
+      continue    
     sockhandle = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
     sockhandle.connect(socketfile)
     conn = os.fdopen(sockhandle.fileno())
index c4bb6d4..f6ee4c0 100644 (file)
@@ -240,6 +240,10 @@ RE_REQUEST = re.compile(r'Request: (\w+) (?:Card )?(.+)')
 RE_ERROR = re.compile(r'Error: (.+)')
 while True:
   try:
+    if not os.path.exists(socketfile):
+      logging.debug("Socketfile '%s' not found, waiting 5 secs" % socketfile)
+      time.sleep(5)
+      continue
     sockhandle = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
     sockhandle.connect(socketfile)
     conn = os.fdopen(sockhandle.fileno())