net.server_epoll: Skip reset of read timeout when not reading

Should avoid rare but needless timer interactions
This commit is contained in:
Kim Alvefur 2021-07-17 14:51:50 +02:00
parent decfa3a59d
commit aba20a09bf

View file

@ -458,7 +458,8 @@ function interface:onreadable()
return;
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:pausefor(cfg.read_retry_delay);
else