From ee503990ec60bb814c782c1170c21b4f106c6169 Mon Sep 17 00:00:00 2001 From: Ancor Gonzalez Sosa Date: Mon, 9 Dec 2024 14:35:15 +0100 Subject: [PATCH 1/2] service: Workaround for error on s390x --- service/lib/agama/storage/proposal_strategies/guided.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/service/lib/agama/storage/proposal_strategies/guided.rb b/service/lib/agama/storage/proposal_strategies/guided.rb index 2137b033ea..cd9123c6be 100644 --- a/service/lib/agama/storage/proposal_strategies/guided.rb +++ b/service/lib/agama/storage/proposal_strategies/guided.rb @@ -62,6 +62,9 @@ def calculate # @see Base#issues def issues + # Returning [] in case of a missing proposal is a workaround (the scenario should + # not happen). But this class is not expected to live long. + return [] unless storage_manager.proposal return [] unless storage_manager.proposal.failed? [target_device_issue, missing_devices_issue].compact From da780d6a13839162b2426f73cc5e0bb13e3f0b89 Mon Sep 17 00:00:00 2001 From: Ancor Gonzalez Sosa Date: Mon, 9 Dec 2024 15:45:09 +0100 Subject: [PATCH 2/2] Changelog --- service/package/rubygem-agama-yast.changes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/service/package/rubygem-agama-yast.changes b/service/package/rubygem-agama-yast.changes index e24aa09ae9..99e9725b17 100644 --- a/service/package/rubygem-agama-yast.changes +++ b/service/package/rubygem-agama-yast.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Dec 9 14:43:11 UTC 2024 - Ancor Gonzalez Sosa + +- Work around to a problem triggered after formatting DASD devices + (mitigates gh#agama-project/agama#1818). + ------------------------------------------------------------------- Tue Dec 3 20:32:08 UTC 2024 - Josef Reidinger