Skip to content

Commit

Permalink
Fix for DM failure: Std subcloud installation
Browse files Browse the repository at this point in the history
Signed-off-by: mmanthir <mahalakshmi.manthiram@windriver.com>
  • Loading branch information
MahalakshmiManthiram committed Oct 29, 2024
1 parent e5f4543 commit 7676594
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,7 @@
timeout: "{{ boot_wait_time }}"
register: waiting_after_reboot
ignore_unreachable: true
ignore_errors: true

# Retry block: sometimes system reboots twice
# It will take some extra time.
Expand Down Expand Up @@ -774,7 +775,7 @@
register: new_reboot
when: waiting_after_new_reboot.failed

when: waiting_after_reboot.failed
when: waiting_after_reboot.failed or waiting_after_new_reboot.unreachable

- name: Set retries to check resource reconciled status for simplex
set_fact:
Expand Down

0 comments on commit 7676594

Please sign in to comment.