I am writing a server with multiple clients. When a client starts, the server may not yet be working. So a reactor.connectTCP
may fail (no receiving end). Currently I'm solving this by looping on a reactor.run
, i.e.:
- connect to server
- reactor.run
- if fails, repeat
I understand this is not the way to do it in twisted. How can I do it then?
You can always try to reconnect within your
connectionLost
handler, for example:There is also even a built-in
ReconnectingClientFactory
. See also: this blurb on reconnection.