Merge "Trivial: Fix error message when waiting for power state"

This commit is contained in:
Zuul 2019-02-27 12:00:02 +00:00 committed by Gerrit Code Review
commit a52f615d92
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ def node_wait_for_power_state(task, new_state, timeout=None):
timer = loopingcall.BackOffLoopingCall(_wait)
return timer.start(initial_delay=1, timeout=retry_timeout).wait()
except loopingcall.LoopingCallTimeOut:
LOG.error('Timed out after %(retry_timeout)s secs waiting for power '
LOG.error('Timed out after %(retry_timeout)s secs waiting for '
'%(state)s on node %(node_id)s.',
{'retry_timeout': retry_timeout,
'state': new_state, 'node_id': task.node.uuid})