mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.server_epoll: Skip reset of read timeout when not reading
Should avoid rare but needless timer interactions
This commit is contained in:
parent
decfa3a59d
commit
aba20a09bf
1 changed files with 2 additions and 1 deletions
|
@ -458,7 +458,8 @@ function interface:onreadable()
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if self._wantread and self.conn:dirty() then
|
if not self._wantread then return end
|
||||||
|
if 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