Skip to content

Commit

Permalink
fix error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
daTokenizer committed Nov 16, 2016
1 parent b07d103 commit 323a423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module.c
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ int PushCommand(RedisModuleCtx *ctx, RedisModuleString **argv, int argc)
Dehydrator* dehydrator = validateDehydratorKey(ctx, key, dehydrator_name);
if (dehydrator == NULL)
{
RedisModule_ReplyWithError(ctx, "ERROR: No Such dehydrator.");
RedisModule_ReplyWithError(ctx, "ERROR: Not a dehydrator.");
return REDISMODULE_ERR;
}

Expand Down

0 comments on commit 323a423

Please sign in to comment.