dlm: fix not reconnecting on connecting error handling
If we don't clear that bit, lowcomms_connect_sock() will not schedule another attempt, and no further attempt will be done. Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
parent
0d737a8cfd
commit
356344c4c3
|
@ -1253,6 +1253,7 @@ out_err:
|
||||||
con->retries, result);
|
con->retries, result);
|
||||||
mutex_unlock(&con->sock_mutex);
|
mutex_unlock(&con->sock_mutex);
|
||||||
msleep(1000);
|
msleep(1000);
|
||||||
|
clear_bit(CF_CONNECT_PENDING, &con->flags);
|
||||||
lowcomms_connect_sock(con);
|
lowcomms_connect_sock(con);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue