mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-27 09:06:46 -04:00
MINOR: startup: don't rely on PR_STNEW to check for listeners
Instead of looking at listeners in proxies in PR_STNEW state, we'd rather check for listeners in those not in PR_STSTOPPED as it's only this state which indicates the proxy was disabled. And let's check the listeners count instead of testing the list's head.
This commit is contained in:
parent
f18d968830
commit
b50bf046e8
1 changed files with 1 additions and 1 deletions
|
|
@ -2010,7 +2010,7 @@ static void init(int argc, char **argv)
|
|||
break;
|
||||
|
||||
for (px = proxies_list; px; px = px->next)
|
||||
if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
|
||||
if (px->state != PR_STSTOPPED && px->li_all)
|
||||
break;
|
||||
|
||||
if (pr || px) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue