diff --git a/ironic_inspector/node_cache.py b/ironic_inspector/node_cache.py index 37b52a14a..b88645fb3 100644 --- a/ironic_inspector/node_cache.py +++ b/ironic_inspector/node_cache.py @@ -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) diff --git a/releasenotes/notes/add-transition-starting-error-on-timeout-904aeeeb319ecb2b.yaml b/releasenotes/notes/add-transition-starting-error-on-timeout-904aeeeb319ecb2b.yaml index dad1286f4..b268f7c19 100644 --- a/releasenotes/notes/add-transition-starting-error-on-timeout-904aeeeb319ecb2b.yaml +++ b/releasenotes/notes/add-transition-starting-error-on-timeout-904aeeeb319ecb2b.yaml @@ -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.