sleep before reconnecting
[auerswald-callnotifier.git] / src / callnotifier / Source / Remote.php
index 16c27c0297c3a4b141ef71d2ec5451c7aed7c174..be7604f357f0513b81b9fbb16f17c403ee0f43a1 100644 (file)
@@ -21,6 +21,9 @@ class Source_Remote
                 $this->loop();
             } catch (Exception_ConnectionReset $e) {
                 $tryAgain = true;
+                //connection is refused directly after a connection reset
+                //hopefully waiting a bit will help
+                sleep(10);
             }
         } while ($tryAgain);
         $this->disconnect();