mirror of
https://github.com/redis/redis.git
synced 2026-05-28 04:02:46 -04:00
fix CMD_CALL_FROM_MODULE value (#12195)
CMD_CALL_FROM_MODULE overlapped CMD_CALL_REPROCESSING, changing its value to (1<<3)
This commit is contained in:
parent
df1890ef7f
commit
49845c24b1
1 changed files with 1 additions and 1 deletions
|
|
@ -591,9 +591,9 @@ typedef enum {
|
|||
#define CMD_CALL_PROPAGATE_AOF (1<<0)
|
||||
#define CMD_CALL_PROPAGATE_REPL (1<<1)
|
||||
#define CMD_CALL_REPROCESSING (1<<2)
|
||||
#define CMD_CALL_FROM_MODULE (1<<3) /* From RM_Call */
|
||||
#define CMD_CALL_PROPAGATE (CMD_CALL_PROPAGATE_AOF|CMD_CALL_PROPAGATE_REPL)
|
||||
#define CMD_CALL_FULL (CMD_CALL_PROPAGATE)
|
||||
#define CMD_CALL_FROM_MODULE (1<<2) /* From RM_Call */
|
||||
|
||||
/* Command propagation flags, see propagateNow() function */
|
||||
#define PROPAGATE_NONE 0
|
||||
|
|
|
|||
Loading…
Reference in a new issue