Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove softfail for bsc#1233026 #20762

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions lib/sles4sap_publiccloud.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1298,11 +1298,6 @@ sub wait_for_cluster {
if ($args{max_retries} <= 0) {
record_info('NOT OK', "Cluster or DB data synchronization issue detected after retrying.");
$self->display_full_status();
# softfail because of bsc#1233026 - if fixed remove the 'if' condition AND the 'use version_utils' from this file
if (is_sle('=12-SP5') && $crm_output =~ /TimeoutError/) {
record_soft_failure("bsc#1233026 - Error occurred, see previous output: Proceeding despite failure.");
return;
}
die "Cluster is not ready after specified retries.";
}
sleep($args{wait_time});
Expand Down
Loading