Stop connection attempts if interrupted

If the interruptor is interrupted, every network call will fail, but the
retry-on-error mechanism must also be stopped.
This commit is contained in:
Romain Vimont 2021-11-14 15:39:20 +01:00
parent 739ff9dce0
commit 6a27062f48

View file

@ -234,6 +234,12 @@ connect_to_server(struct sc_server *server, uint32_t attempts, sc_tick delay) {
net_close(socket);
}
if (sc_intr_is_interrupted(&server->intr)) {
// Stop immediately
break;
}
if (attempts) {
sc_mutex_lock(&server->mutex);
sc_tick deadline = sc_tick_now() + delay;