Commit 712ea729 authored by antirez's avatar antirez
Browse files

Call writeToClient() directly instead of the write handler.

parent 01c08b50
...@@ -1751,7 +1751,7 @@ void flushSlavesOutputBuffers(void) { ...@@ -1751,7 +1751,7 @@ void flushSlavesOutputBuffers(void) {
slave->replstate == SLAVE_STATE_ONLINE && slave->replstate == SLAVE_STATE_ONLINE &&
listLength(slave->reply)) listLength(slave->reply))
{ {
sendReplyToClient(server.el,slave->fd,slave,0); writeToClient(slave->fd,slave,0);
} }
} }
} }
......
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