git.cweiske.de
/
auerswald-callnotifier.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
sleep before reconnecting
[auerswald-callnotifier.git]
/
src
/
callnotifier
/
Source
/
Remote.php
diff --git
a/src/callnotifier/Source/Remote.php
b/src/callnotifier/Source/Remote.php
index
16c27c0
..
be7604f
100644
(file)
--- a/
src/callnotifier/Source/Remote.php
+++ b/
src/callnotifier/Source/Remote.php
@@
-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();