mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-11 01:41:49 -04:00
[BUG] fix typo in redispatched connection
a copy-paste typo was present in the reconnection code responsible for respatching. The client's FSM would not be re-evaluated if an error occurred. It looks harmless but better fix it.
This commit is contained in:
parent
fbffe58f46
commit
cd40aeeeb9
1 changed files with 1 additions and 1 deletions
|
|
@ -2500,7 +2500,7 @@ int process_srv(struct session *t)
|
|||
|
||||
/* first, get a connection */
|
||||
if (srv_redispatch_connect(t))
|
||||
return t->srv_state != SV_STIDLE;
|
||||
return t->srv_state != SV_STCONN;
|
||||
}
|
||||
|
||||
do {
|
||||
|
|
|
|||
Loading…
Reference in a new issue