Commit ad245604 authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

Process callbacks after reading

parent c4325663
...@@ -158,6 +158,7 @@ void redisAsyncHandleRead(redisAsyncContext *ac) { ...@@ -158,6 +158,7 @@ void redisAsyncHandleRead(redisAsyncContext *ac) {
} else { } else {
/* Always re-schedule reads */ /* Always re-schedule reads */
if (ac->evAddRead) ac->evAddRead(ac->data); if (ac->evAddRead) ac->evAddRead(ac->data);
redisProcessCallbacks(ac);
} }
} }
......
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