mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 16:21:03 +00:00
Merge branch 'unstable' of github.com:/antirez/redis into unstable
This commit is contained in:
commit
1048b5d13a
@ -1072,6 +1072,10 @@ int handleClientsWithPendingWrites(void) {
|
|||||||
c->flags &= ~CLIENT_PENDING_WRITE;
|
c->flags &= ~CLIENT_PENDING_WRITE;
|
||||||
listDelNode(server.clients_pending_write,ln);
|
listDelNode(server.clients_pending_write,ln);
|
||||||
|
|
||||||
|
/* If a client is protected, don't do anything,
|
||||||
|
* that may trigger write error or recreate handler. */
|
||||||
|
if (c->flags & CLIENT_PROTECTED) continue;
|
||||||
|
|
||||||
/* Try to write buffers to the client socket. */
|
/* Try to write buffers to the client socket. */
|
||||||
if (writeToClient(c->fd,c,0) == C_ERR) continue;
|
if (writeToClient(c->fd,c,0) == C_ERR) continue;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user