Skip to content

Commit 4196e42

Browse files
authored
Merge pull request #41 from varkoly/master
Fix bsc#1221049
2 parents be3d95d + cc071d6 commit 4196e42

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

package/yast2-sap-ha.changes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
-------------------------------------------------------------------
2+
Fri Mar 15 17:38:52 UTC 2024 - Peter Varkoly <varkoly@suse.com>
3+
4+
- yast2-sap-ha: Error occurred during the unattended installation: undefined class/module SapHA::Configuration::ClusterFinalizer
5+
(bsc#1221049)
6+
- 6.0.1
7+
18
-------------------------------------------------------------------
29
Wed Nov 29 07:52:36 UTC 2023 - Peter Varkoly <varkoly@suse.com>
310

package/yast2-sap-ha.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
Name: yast2-sap-ha
20-
Version: 6.0.0
20+
Version: 6.0.1
2121
Release: 0
2222
BuildArch: noarch
2323
Source0: %{name}-%{version}.tar.bz2

src/lib/sap_ha/configuration/hana.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def adjust_global_ini(role)
352352
add_plugin_to_global_ini("SUS_TKOVER", @system_id)
353353
end
354354
command = ["hdbnsutil", "-reloadHADRProviders"]
355-
_out, _status = su_exec_outerr_status("#{@system_id.downcase}adm", *command)
355+
su_exec_outerr_status("#{@system_id.downcase}adm", *command)
356356
end
357357

358358
# Activates the plugin in global ini

src/lib/sap_ha/wizard/scenario_selection_page.rb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,12 @@ def set_contents
4242
end
4343

4444
def refresh_view
45-
previous_configs = SapHA::Helpers.get_configuration_files(@model.product_id)
46-
previous_configs_popup(previous_configs) if !previous_configs.empty?
45+
begin
46+
previous_configs = SapHA::Helpers.get_configuration_files(@model.product_id)
47+
previous_configs_popup(previous_configs) if !previous_configs.empty?
48+
rescue StandardError => e
49+
log.info "Could not parse previous config files: #{e.message}"
50+
end
4751
end
4852

4953
def can_go_next?

0 commit comments

Comments
 (0)