# HG changeset patch # User Kim Alvefur # Date 1629137738 -7200 # Node ID 856dada099fab3f804fe864a19fe92f02ec09522 # Parent 9c450185bac1fb92b2b7033ab1c409c07dd37b01 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. diff -r 9c450185bac1 -r 856dada099fa net/server_epoll.lua --- a/net/server_epoll.lua Mon Aug 16 12:45:14 2021 +0200 +++ b/net/server_epoll.lua Mon Aug 16 20:15:38 2021 +0200 @@ -801,8 +801,9 @@ 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);