We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b2f684 commit 609a304Copy full SHA for 609a304
1 file changed
redismodule.h
@@ -213,11 +213,13 @@ typedef struct RedisModuleStreamID {
213
#define REDISMODULE_CTX_FLAGS_ASYNC_LOADING (1<<23)
214
/* Redis is starting. */
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)
218
219
/* Next context flag, must be updated when adding new flags above!
220
This flag should not be used directly by the module.
221
* Use RedisModule_GetContextFlagsAll instead. */
-#define _REDISMODULE_CTX_FLAGS_NEXT (1<<25)
222
+#define _REDISMODULE_CTX_FLAGS_NEXT (1<<26)
223
224
/* Keyspace changes notification classes. Every class is associated with a
225
* character for configuration purposes.
0 commit comments