Remove special-casing of all_seeing_eye
This commit is contained in:
parent
f904ce2f5d
commit
b2e4d32de6
@ -419,7 +419,6 @@ class ServerManager(util.LoggedClass):
|
|||||||
cutoff = now - self.env.session_timeout
|
cutoff = now - self.env.session_timeout
|
||||||
stale = [session for session in self.sessions
|
stale = [session for session in self.sessions
|
||||||
if session.last_recv < cutoff
|
if session.last_recv < cutoff
|
||||||
and session.client != 'all_seeing_eye'
|
|
||||||
and not session.is_closing()]
|
and not session.is_closing()]
|
||||||
for session in stale:
|
for session in stale:
|
||||||
self.close_session(session)
|
self.close_session(session)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user