Closed JeppeOvervad closed 1 year ago
The SocketNetwork constructor(s) currently only allow for a 1 minute timeout when attempting to connect the network.
Also, the sleep duration between attempts, calculated as 1 << attempts++, increases too fast to be useful for larger timeout values.
1 << attempts++
fixed in https://github.com/aicis/fresco/pull/411
The SocketNetwork constructor(s) currently only allow for a 1 minute timeout when attempting to connect the network.
Also, the sleep duration between attempts, calculated as
1 << attempts++
, increases too fast to be useful for larger timeout values.