Remove special-casing of all_seeing_eye

This commit is contained in:
Neil Booth 2016-12-07 08:07:05 +09:00
parent f904ce2f5d
commit b2e4d32de6

View File

@ -419,7 +419,6 @@ class ServerManager(util.LoggedClass):
cutoff = now - self.env.session_timeout
stale = [session for session in self.sessions
if session.last_recv < cutoff
and session.client != 'all_seeing_eye'
and not session.is_closing()]
for session in stale:
self.close_session(session)