mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-11-10 21:41:00 +01:00
MINOR: checks: use conn_full_close() instead of conn_force_close()
There's no point in using conn_force_close() in the checks since they do not use XPRT_TRACKED so both functions are equivalent.
This commit is contained in:
parent
8c82901958
commit
402dbc11d5
@ -1383,7 +1383,7 @@ static int wake_srv_chk(struct connection *conn)
|
|||||||
* sure want to abort the hard way.
|
* sure want to abort the hard way.
|
||||||
*/
|
*/
|
||||||
conn_sock_drain(conn);
|
conn_sock_drain(conn);
|
||||||
conn_force_close(conn);
|
conn_full_close(conn);
|
||||||
ret = -1;
|
ret = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2164,7 +2164,7 @@ static struct task *process_chk_conn(struct task *t)
|
|||||||
* server state to be suddenly changed.
|
* server state to be suddenly changed.
|
||||||
*/
|
*/
|
||||||
conn_sock_drain(conn);
|
conn_sock_drain(conn);
|
||||||
conn_force_close(conn);
|
conn_full_close(conn);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (conn) {
|
if (conn) {
|
||||||
@ -2640,7 +2640,7 @@ static int tcpcheck_main(struct check *check)
|
|||||||
* 3: release and replace the old one on success
|
* 3: release and replace the old one on success
|
||||||
*/
|
*/
|
||||||
if (check->conn) {
|
if (check->conn) {
|
||||||
conn_force_close(check->conn);
|
conn_full_close(check->conn);
|
||||||
retcode = -1; /* do not reuse the fd! */
|
retcode = -1; /* do not reuse the fd! */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user