mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-14 14:42:13 -04:00
[BUG] scope "." must match the backend and not the frontend
This commit is contained in:
parent
10ae548052
commit
1388a3a8e8
1 changed files with 1 additions and 1 deletions
|
|
@ -563,7 +563,7 @@ int stats_dump_proxy(struct session *s, struct proxy *px, struct uri_auth *uri,
|
|||
break;
|
||||
|
||||
/* match '.' which means 'self' proxy */
|
||||
if (!strcmp(scope->px_id, ".") && px == s->fe)
|
||||
if (!strcmp(scope->px_id, ".") && px == s->be)
|
||||
break;
|
||||
scope = scope->next;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue