Skip to content

Commit

Permalink
Merge pull request #44 from varkoly/SLE-15-SP4
Browse files Browse the repository at this point in the history
Fix bsc#1221049
  • Loading branch information
varkoly committed Mar 19, 2024
2 parents 98763dd + 6ecfc38 commit 43bf951
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
7 changes: 7 additions & 0 deletions package/yast2-sap-ha.changes
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Mar 15 17:38:52 UTC 2024 - Peter Varkoly <varkoly@suse.com>

- yast2-sap-ha: Error occurred during the unattended installation: undefined class/module SapHA::Configuration::ClusterFinalizer
(bsc#1221049)
- 4.4.8

-------------------------------------------------------------------
Wed Nov 29 07:52:36 UTC 2023 - Peter Varkoly <varkoly@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-sap-ha.spec
Expand Up @@ -17,7 +17,7 @@


Name: yast2-sap-ha
Version: 4.4.7
Version: 4.4.8
Release: 0
BuildArch: noarch
Source0: %{name}-%{version}.tar.bz2
Expand Down
8 changes: 6 additions & 2 deletions src/lib/sap_ha/wizard/scenario_selection_page.rb
Expand Up @@ -42,8 +42,12 @@ def set_contents
end

def refresh_view
previous_configs = SapHA::Helpers.get_configuration_files(@model.product_id)
previous_configs_popup(previous_configs) if !previous_configs.empty?
begin
previous_configs = SapHA::Helpers.get_configuration_files(@model.product_id)
previous_configs_popup(previous_configs) if !previous_configs.empty?
rescue StandardError => e
log.info "Could not parse previous config files: #{e.message}"
end
end

def can_go_next?
Expand Down

0 comments on commit 43bf951

Please sign in to comment.