mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-15 16:47:57 -05: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
541b5c24ca
commit
00559e7117
1 changed files with 1 additions and 1 deletions
|
|
@ -2543,7 +2543,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