File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -213,11 +213,13 @@ typedef struct RedisModuleStreamID {
213
213
#define REDISMODULE_CTX_FLAGS_ASYNC_LOADING (1<<23)
214
214
/* Redis is starting. */
215
215
#define REDISMODULE_CTX_FLAGS_SERVER_STARTUP (1<<24)
216
+ /* This context can call execute debug commands. */
217
+ #define REDISMODULE_CTX_FLAGS_DEBUG_ENABLED (1<<25)
216
218
217
219
/* Next context flag, must be updated when adding new flags above!
218
220
This flag should not be used directly by the module.
219
221
* Use RedisModule_GetContextFlagsAll instead. */
220
- #define _REDISMODULE_CTX_FLAGS_NEXT (1<<25 )
222
+ #define _REDISMODULE_CTX_FLAGS_NEXT (1<<26 )
221
223
222
224
/* Keyspace changes notification classes. Every class is associated with a
223
225
* character for configuration purposes.
You can’t perform that action at this time.
0 commit comments