Commit e4b6070c authored by antirez's avatar antirez
Browse files

Modules: more clarification about disconnection callback.

parent 2271cf03
......@@ -4194,8 +4194,8 @@ void unblockClientFromModule(client *c) {
/* Call the disconnection callback if any. Note that
* bc->disconnect_callback is set to NULL if the client gets disconnected
* by the module itself, so the callback will NOT get called if this is
* not an actual disconnection event. */
* by the module itself or because of a timeout, so the callback will NOT
* get called if this is not an actual disconnection event. */
if (bc->disconnect_callback) {
RedisModuleCtx ctx = REDISMODULE_CTX_INIT;
ctx.blocked_privdata = bc->privdata;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment