Merge pull request #5961 from yossigo/modules-tests

Modules tests
This commit is contained in:
Salvatore Sanfilippo
2019-04-11 07:56:23 -07:00
committed by GitHub
7 changed files with 64 additions and 29 deletions

View File

@ -753,6 +753,7 @@ void RM_SetModuleAttribs(RedisModuleCtx *ctx, const char *name, int ver, int api
module->usedby = listCreate();
module->using = listCreate();
module->filters = listCreate();
module->in_call = 0;
ctx->module = module;
}