summaryrefslogtreecommitdiff
path: root/src/debug.c
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2018-06-29 18:00:32 +0200
committerGitHub <noreply@github.com>2018-06-29 18:00:32 +0200
commita0b05a0424390492aefe2afdc34d917045897756 (patch)
tree1b0ab67eeafa9e634de6c0bb97aac85d49527b77 /src/debug.c
parentaa2c390ef89eae23ba5f72cd2cb7006711c2e6de (diff)
parentb9cbd04b573c9f3e3092d45bb2f3181441307e79 (diff)
downloadredis-a0b05a0424390492aefe2afdc34d917045897756.tar.gz
Merge pull request #5075 from soloestoy/client-list-types
FEATURE: implements client list type option
Diffstat (limited to 'src/debug.c')
-rw-r--r--src/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.c b/src/debug.c
index a54591bd4..b8d0690e2 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -1077,7 +1077,7 @@ void sigsegvHandler(int sig, siginfo_t *info, void *secret) {
infostring = genRedisInfoString("all");
serverLogRaw(LL_WARNING|LL_RAW, infostring);
serverLogRaw(LL_WARNING|LL_RAW, "\n------ CLIENT LIST OUTPUT ------\n");
- clients = getAllClientsInfoString();
+ clients = getAllClientsInfoString(-1);
serverLogRaw(LL_WARNING|LL_RAW, clients);
sdsfree(infostring);
sdsfree(clients);