Remove a redundant message
This commit is contained in:
parent
83674b1b7b
commit
1830cae3de
@ -126,7 +126,6 @@ class ServerManager(LoggedClass):
|
|||||||
def remove_session(self, session):
|
def remove_session(self, session):
|
||||||
self.sessions.remove(session)
|
self.sessions.remove(session)
|
||||||
if self.current_task and session == self.current_task.session:
|
if self.current_task and session == self.current_task.session:
|
||||||
self.logger.info('cancelling running task')
|
|
||||||
self.current_task.task.cancel()
|
self.current_task.task.cancel()
|
||||||
|
|
||||||
def add_task(self, session, request):
|
def add_task(self, session, request):
|
||||||
@ -151,7 +150,7 @@ class ServerManager(LoggedClass):
|
|||||||
.format(session.peername(), secs,
|
.format(session.peername(), secs,
|
||||||
request))
|
request))
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
self.logger.info('cancelled task noted')
|
self.logger.info('running task cancelled')
|
||||||
except Exception:
|
except Exception:
|
||||||
# Getting here should probably be considered a bug and fixed
|
# Getting here should probably be considered a bug and fixed
|
||||||
self.logger.error('error handling request {}'.format(request))
|
self.logger.error('error handling request {}'.format(request))
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user