mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-28 04:12:17 -04:00
* The displayed proxy name was wrong when dumping upon SIGHUP.
This commit is contained in:
parent
aaff30e62e
commit
1fb3493492
1 changed files with 2 additions and 2 deletions
|
|
@ -5991,8 +5991,8 @@ void sig_dump_state(int sig) {
|
|||
}
|
||||
|
||||
if (find_server(p) == NULL) {
|
||||
Warning("SIGHUP: Proxy %s has no server available !\n", p);
|
||||
send_log(p, LOG_NOTICE, "SIGHUP: Proxy %s has no server available !\n", p);
|
||||
Warning("SIGHUP: Proxy %s has no server available !\n", p->id);
|
||||
send_log(p, LOG_NOTICE, "SIGHUP: Proxy %s has no server available !\n", p->id);
|
||||
}
|
||||
|
||||
p = p->next;
|
||||
|
|
|
|||
Loading…
Reference in a new issue