Skip to content

Commit

Permalink
Merge pull request #43 from varkoly/SLE-15-SP5
Browse files Browse the repository at this point in the history
Fix bsc#1221049
  • Loading branch information
varkoly committed Mar 19, 2024
2 parents 7bb7c30 + 1360a53 commit e4ad9b0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 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.5.11

-------------------------------------------------------------------
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.5.10
Version: 4.5.11
Release: 0
BuildArch: noarch
Source0: %{name}-%{version}.tar.bz2
Expand Down
2 changes: 1 addition & 1 deletion src/lib/sap_ha/configuration/hana.rb
Expand Up @@ -353,7 +353,7 @@ def adjust_global_ini(role)
add_plugin_to_global_ini("SUS_TKOVER", @system_id)
end
command = ["hdbnsutil", "-reloadHADRProviders"]
_out, _status = su_exec_outerr_status("#{@system_id.downcase}adm", *command)
su_exec_outerr_status("#{@system_id.downcase}adm", *command)
end

# Activates the plugin in global ini
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 e4ad9b0

Please sign in to comment.