mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Split, attempt to clarify dirty noise message
Only relevant because a "dirty" connection (with incoming data in LuaSocket's buffer) does not count as "readable" according to epoll, so special care needs to be taken to keep on processing it.
This commit is contained in:
parent
48216c1dc8
commit
76189039ae
1 changed files with 2 additions and 1 deletions
|
@ -801,8 +801,9 @@ function interface:pausefor(t)
|
|||
self._pausefor = addtimer(t, function ()
|
||||
self._pausefor = nil;
|
||||
self:set(true);
|
||||
self:noise("Resuming after pause, connection is %s", not self.conn and "missing" or self.conn:dirty() and "dirty" or "clean");
|
||||
self:noise("Resuming after pause");
|
||||
if self.conn and self.conn:dirty() then
|
||||
self:noise("Have buffered incoming data to process");
|
||||
self:onreadable();
|
||||
end
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue