Merge "Fix `clean up` error logging formatting"

This commit is contained in:
Jenkins 2017-05-04 15:07:47 +00:00 committed by Gerrit Code Review
commit 3f2ba0c3df
2 changed files with 1 additions and 5 deletions

View File

@ -885,7 +885,7 @@ def clean_up():
if node_info.finished_at or node_info.started_at > threshold:
continue
if node_info.state != istate.States.waiting:
LOG.error('Something went wrong, timeout occurs'
LOG.error('Something went wrong, timeout occurred '
'while introspection in "%s" state',
node_info.state,
node_info=node_info)

View File

@ -1,8 +1,4 @@
---
features:
- |
Adds new transition ``starting`` -> ``error`` as reaction on ``timeout``
event.
fixes:
- |
Timeout event on ``starting`` state lead to undefined transition error.