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

Fix bsc#1221049 #41

Merged
merged 8 commits into from
Mar 19, 2024
7 changes: 7 additions & 0 deletions package/yast2-sap-ha.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Mar 15 17:38:52 UTC 2024 - Peter Varkoly <[email protected]>

- yast2-sap-ha: Error occurred during the unattended installation: undefined class/module SapHA::Configuration::ClusterFinalizer
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would split this line to two. I am not sure if it will be readable in rpm -q --changelog

(bsc#1221049)
- 6.0.1

-------------------------------------------------------------------
Wed Nov 29 07:52:36 UTC 2023 - Peter Varkoly <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-sap-ha.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-sap-ha
Version: 6.0.0
Version: 6.0.1
Release: 0
BuildArch: noarch
Source0: %{name}-%{version}.tar.bz2
Expand Down
2 changes: 1 addition & 1 deletion src/lib/sap_ha/configuration/hana.rb
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,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
Original file line number Diff line number Diff line change
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
Loading