mirror of
https://github.com/fluencelabs/redis
synced 2025-06-20 12:36:31 +00:00
asyncCloseClientOnOutputBufferLimitReached() now ignores clients with REDIS_CLOSE_ASAP flag already set. Return value of the function changed from int to void since it is not used. Fixed logging of the client scheduled to be closed.
This commit is contained in:
@ -804,7 +804,7 @@ void rewriteClientCommandVector(redisClient *c, int argc, ...);
|
||||
void rewriteClientCommandArgument(redisClient *c, int i, robj *newval);
|
||||
unsigned long getClientOutputBufferMemoryUsage(redisClient *c);
|
||||
void freeClientsInAsyncFreeQueue(void);
|
||||
int asyncCloseClientOnOutputBufferLimitReached(redisClient *c);
|
||||
void asyncCloseClientOnOutputBufferLimitReached(redisClient *c);
|
||||
|
||||
#ifdef __GNUC__
|
||||
void addReplyErrorFormat(redisClient *c, const char *fmt, ...)
|
||||
|
Reference in New Issue
Block a user