From ea95d53442d7245d3003fd740e4678c1cb5a3dec Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Dec 03 2024 16:52:32 +0000 Subject: containers: Log a warning instead of an error for missing arches Rather than emitting an error-level log, use the warning level for when one or more architectures in the manifest are missing. This is due to an issue with the compose and there's nothing we can do about it other than wait for a new, fixed compose. --- diff --git a/fedora-image-uploader/fedora_image_uploader/handler.py b/fedora-image-uploader/fedora_image_uploader/handler.py index ca1858f..ec092e4 100644 --- a/fedora-image-uploader/fedora_image_uploader/handler.py +++ b/fedora-image-uploader/fedora_image_uploader/handler.py @@ -296,7 +296,7 @@ class Uploader: # ...but first, bail if any arches are missing missing = self._missing_manifest_arches(firstregref, builtarches) if missing: - _log.error( + _log.warning( "Arches %s in current manifest %s were not built in compose %s, " "not publishing manifest", " ".join(missing),