mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.server_epoll: Skip delayed continuation read on paused connections
This should prevent #1333 in cases where LuaSockets buffer is "dirty", i.e. contains more data after a read, where it gets resumed with a short delay.
This commit is contained in:
parent
e34e8e845d
commit
c422e8f134
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ function interface:onreadable()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if not self.conn then return; end
|
if not self.conn then return; end
|
||||||
if self.conn:dirty() then
|
if self._wantread and self.conn:dirty() then
|
||||||
self:setreadtimeout(false);
|
self:setreadtimeout(false);
|
||||||
self:pausefor(cfg.read_retry_delay);
|
self:pausefor(cfg.read_retry_delay);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue