I am writing a tcp proxy with Twisted framework and need a simple client failover. If proxy can not connect to one backend, then connect to next one in the list. I used
reactor.connectTCP(host, port, factory)
for proxy till I came to this task, but it does not spit out error if it can not connect. How can I catch, that it can not connect and try other host or should I use some other connection method?
Python-twisted client connection failover
267 Views Asked by Kazimieras Aliulis At
1
You can use a deferred to do that
This will trigger the next errback if the first one fails, otherwise goto the print function.