From a0347734979e6a9288165c79b001aeee6c14a8ff Mon Sep 17 00:00:00 2001 From: jonathan keinan Date: Mon, 3 Feb 2025 13:12:28 +0200 Subject: [PATCH] * remove redundant module config variable --- src/module.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/module.c b/src/module.c index 472c3eea7d..2c075ef7ee 100644 --- a/src/module.c +++ b/src/module.c @@ -439,7 +439,6 @@ typedef int (*RedisModuleConfigApplyFunc)(RedisModuleCtx *ctx, void *privdata, R struct ModuleConfig { sds name; /* Fullname of the config (as it appears in the config file) */ sds alias; /* Optional alias for the configuration. NULL if none exists */ - int defaultWasSet; /* Indicates if the default value was set for the configuration */ int unprefixedFlag; /* Indicates if the REDISMODULE_CONFIG_UNPREFIXED flag was set. * If the configuration name was prefixed,during get_fn/set_fn * callbacks, it should be reported without the prefix */