Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
7957c676
Commit
7957c676
authored
Jan 24, 2012
by
antirez
Browse files
after all closing a client for output buffer limit overcoming is a WARNING level message.
parent
c8a607f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/networking.c
View file @
7957c676
...
@@ -1294,7 +1294,7 @@ void asyncCloseClientOnOutputBufferLimitReached(redisClient *c) {
...
@@ -1294,7 +1294,7 @@ void asyncCloseClientOnOutputBufferLimitReached(redisClient *c) {
sds
client
=
getClientInfoString
(
c
);
sds
client
=
getClientInfoString
(
c
);
freeClientAsync
(
c
);
freeClientAsync
(
c
);
redisLog
(
REDIS_
NOTICE
,
"Client %s scheduled to be closed ASAP for overcoming of output buffer limits."
,
client
);
redisLog
(
REDIS_
WARNING
,
"Client %s scheduled to be closed ASAP for overcoming of output buffer limits."
,
client
);
sdsfree
(
client
);
sdsfree
(
client
);
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment