Merge "Wait for lock release during power state change" into stable/queens

This commit is contained in:
Zuul 2020-08-26 07:09:40 +00:00 committed by Gerrit Code Review
commit fb05b48550
1 changed files with 2 additions and 2 deletions

View File

@ -84,12 +84,12 @@ workflows:
action: ironic.node_get
input:
node_id: <% $.node_uuid %>
fields: ['power_state', 'last_error']
fields: ['power_state', 'last_error', 'reservation']
timeout: 120 #2 minutes
retry:
delay: 6
count: 20
continue-on: <% not task().result.power_state in [$.target_state, $.error_state] %>
continue-on: <% not (task().result.power_state in [$.target_state, $.error_state] and task().result.reservation = null)%>
on-complete:
- state_not_reached: <% task().result.power_state != $.target_state %>