File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,8 @@ static const CommandSpec commands[] = {
72
72
73
73
/* Admin commands - bypassed */
74
74
{"auth" , CMD_SPEC_DONT_INTERCEPT },
75
- /* queued by multi, need to intercept */
76
- // {"ping", CMD_SPEC_DONT_INTERCEPT },
77
- {"ping" , CMD_SPEC_READONLY },
75
+ /* queued by multi, need to intercept in multi, but can't do that right now with redis */
76
+ {"ping" , CMD_SPEC_DONT_INTERCEPT },
78
77
{"hello" , CMD_SPEC_DONT_INTERCEPT },
79
78
{"module" , CMD_SPEC_DONT_INTERCEPT },
80
79
{"config" , CMD_SPEC_DONT_INTERCEPT },
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ UNLINK can reclaim memory in background
41
41
-- ACL test fails because we prepend "raft" string to the command
42
42
Script ACL check
43
43
44
-
45
44
-- MULTI/EXEC is currently read-write in RedisRaft
46
45
EXEC with only read commands should not be rejected when OOM
47
46
@@ -52,10 +51,14 @@ EXEC with only read commands should not be rejected when OOM
52
51
MULTI with SAVE
53
52
MULTI with SHUTDOWN
54
53
MULTI with config error
55
-
56
- -- pubsub can't allow ping to be intercepted, but needs to be intercepted for multi tests
57
- -- where part of the multi response
58
- /.*Sub PING on.*
54
+ -- same as above, but these all relate to PING usage inside of MULTI
55
+ MULTI / EXEC basics
56
+ EXEC works on WATCHed key not modified
57
+ After successful EXEC key is no longer watched
58
+ After failed EXEC key is no longer watched
59
+ It is possible to UNWATCH
60
+ FLUSHALL does not touch non affected keys
61
+ FLUSHDB does not touch non affected keys
59
62
60
63
-- After fixing this: https://github.com/RedisLabs/redisraft/issues/367
61
64
-- We don't need to skip this test as it doesn't actually configure a replica.
You can’t perform that action at this time.
0 commit comments