Skip to content

Commit

Permalink
Fix HA migration patch_sle sporadical sbd failure
Browse files Browse the repository at this point in the history
Fix HA migration patch_sle sporadical failure: [FAILED] Failed to start Shared-storage based fencing daemon
TEAM-9918 - Test module patch_sle failed sporadically: scc registration needle mismatch
  • Loading branch information
lilyeyes committed Jan 7, 2025
1 parent 3d6d568 commit 04d5f0f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/ha/stop_pacemaker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ use Utils::Systemd qw(systemctl);

sub run {
select_console("root-console");
systemctl 'stop pacemaker';
systemctl 'status sbd', ignore_failure => 1;
systemctl 'status pacemaker', ignore_failure => 1;
systemctl 'stop sbd', ignore_failure => 1;
systemctl 'stop pacemaker', ignore_failure => 1;
systemctl 'status sbd', ignore_failure => 1;
systemctl 'status pacemaker', ignore_failure => 1;
}

1;

0 comments on commit 04d5f0f

Please sign in to comment.