mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-25 20:06:16 -04:00
MINOR: stream-int: use conn_full_close() instead of conn_force_close()
We simply disable tracking before calling it.
This commit is contained in:
parent
f098fd061f
commit
3b737c9894
1 changed files with 2 additions and 1 deletions
|
|
@ -160,7 +160,8 @@ static inline void si_release_endpoint(struct stream_interface *si)
|
|||
|
||||
if ((conn = objt_conn(si->end))) {
|
||||
LIST_DEL(&conn->list);
|
||||
conn_force_close(conn);
|
||||
conn_stop_tracking(conn);
|
||||
conn_full_close(conn);
|
||||
conn_free(conn);
|
||||
}
|
||||
else if ((appctx = objt_appctx(si->end))) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue