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:
YaacovHazan 2023-05-18 09:23:21 +03:00 committed by GitHub
parent df1890ef7f
commit 49845c24b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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