--- a/runtime/WampClient.py Tue Jan 09 14:42:23 2018 +0100
+++ b/runtime/WampClient.py Tue Jan 09 14:50:41 2018 +0100
@@ -90,12 +90,12 @@
class ReconnectingWampWebSocketClientFactory(WampWebSocketClientFactory, ReconnectingClientFactory):
def clientConnectionFailed(self, connector, reason):
- self.retry(connector)
print(_("WAMP Client connection failed .. retrying .."))
+ ReconnectingClientFactory.clientConnectionFailed(self, connector, reason)
def clientConnectionLost(self, connector, reason):
- self.retry(connector)
print(_("WAMP Client connection lost .. retrying .."))
+ ReconnectingClientFactory.clientConnectionFailed(self, connector, reason)
def LoadWampClientConf(wampconf):