- [PATCH 1/2] BUG/MEDIUM: stats: properly initialize the scope before - [PATCH 2/2] BUG/MEDIUM: http: don't forward client shutdown without - [PATCH 3/8] BUG/MINOR: check: fix tcpcheck error message - [PATCH 4/8] CLEANUP: checks: fix double usage of cur / current_step - [PATCH 5/8] BUG/MEDIUM: checks: do not dereference head of a - [PATCH 6/8] CLEANUP: checks: simplify the loop processing of - [PATCH 7/8] BUG/MAJOR: checks: always check for end of list before - [PATCH 8/8] BUG/MEDIUM: checks: do not dereference a list as a - [PATCH 09/10] BUG/MEDIUM: peers: apply a random reconnection timeout - [PATCH 10/10] DOC: Update doc about weight, act and bck fields in the - [PATCH 11/14] MINOR: ssl: add a destructor to free allocated SSL - [PATCH 12/14] BUG/MEDIUM: ssl: fix tune.ssl.default-dh-param value - [PATCH 13/14] BUG/MINOR: cfgparse: fix typo in 'option httplog' error - [PATCH 14/14] BUG/MEDIUM: cfgparse: segfault when userlist is misused Signed-off-by: heil <heil@terminal-consulting.de>
32 lines
987 B
Diff
32 lines
987 B
Diff
From 0aa5899911bbc765ba16ce52a80fa76230781779 Mon Sep 17 00:00:00 2001
|
|
From: Willy Tarreau <w@1wt.eu>
|
|
Date: Mon, 4 May 2015 18:07:56 +0200
|
|
Subject: [PATCH 1/2] BUG/MEDIUM: stats: properly initialize the scope before
|
|
dumping stats
|
|
|
|
Issuing a "show sess all" prior to a "show stat" on the CLI results in no
|
|
proxy being dumped because the scope_len union member was not properly
|
|
reinitialized.
|
|
|
|
This fix must be backported into 1.5.
|
|
(cherry picked from commit 6bcb95da5b9cb143088102b460c7bcb37c1b3d81)
|
|
---
|
|
src/dumpstats.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/src/dumpstats.c b/src/dumpstats.c
|
|
index b616478..ca084ac 100644
|
|
--- a/src/dumpstats.c
|
|
+++ b/src/dumpstats.c
|
|
@@ -1109,6 +1109,8 @@ static int stats_sock_parse_request(struct stream_interface *si, char *line)
|
|
arg++;
|
|
}
|
|
|
|
+ appctx->ctx.stats.scope_str = 0;
|
|
+ appctx->ctx.stats.scope_len = 0;
|
|
appctx->ctx.stats.flags = 0;
|
|
if (strcmp(args[0], "show") == 0) {
|
|
if (strcmp(args[1], "stat") == 0) {
|
|
--
|
|
2.0.5
|
|
|