Add logging when pausing due to node abort

We can see the unpause in the logs, but not the pause.

Change-Id: I100764bc7a8117b63e3a644c512722d5a6b255c3
This commit is contained in:
David Shrewsbury 2018-07-23 15:17:00 -04:00
parent 048293fc1e
commit 81436b58c6
1 changed files with 3 additions and 0 deletions

View File

@ -698,6 +698,9 @@ class NodeRequestHandler(NodeRequestHandlerNotifications,
# be created again.
for node in aborted_nodes:
self._satisfied_types.removeNode(node.id)
self.log.debug(
"Pausing request handling after node abort to satisfy "
"request %s", self.request.id)
self.paused = True
return False
else: