summaryrefslogtreecommitdiff
path: root/src/logreqres.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/logreqres.c')
-rw-r--r--src/logreqres.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/logreqres.c b/src/logreqres.c
index aa54b721d..6e7621d35 100644
--- a/src/logreqres.c
+++ b/src/logreqres.c
@@ -186,7 +186,8 @@ size_t reqresAppendRequest(client *c) {
/* Ignore commands that have streaming non-standard response */
sds cmd = argv[0]->ptr;
- if (!strcasecmp(cmd,"sync") ||
+ if (!strcasecmp(cmd,"debug") || /* because of DEBUG SEGFAULT */
+ !strcasecmp(cmd,"sync") ||
!strcasecmp(cmd,"psync") ||
!strcasecmp(cmd,"monitor") ||
!strcasecmp(cmd,"subscribe") ||
@@ -194,11 +195,7 @@ size_t reqresAppendRequest(client *c) {
!strcasecmp(cmd,"ssubscribe") ||
!strcasecmp(cmd,"sunsubscribe") ||
!strcasecmp(cmd,"psubscribe") ||
- !strcasecmp(cmd,"punsubscribe") ||
- !strcasecmp(cmd,"debug") ||
- !strcasecmp(cmd,"pfdebug") ||
- !strcasecmp(cmd,"lolwut") ||
- (!strcasecmp(cmd,"sentinel") && argc > 1 && !strcasecmp(argv[1]->ptr,"debug")))
+ !strcasecmp(cmd,"punsubscribe"))
{
return 0;
}