From 1bc7ef55a4c1e7a3f1fbcdc6735119822ccd4cc8 Mon Sep 17 00:00:00 2001 From: Christian Zunker <827818+czunker@users.noreply.github.com> Date: Wed, 4 Oct 2023 15:25:10 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Continue=20scanning=20when=20con?= =?UTF-8?q?nect=20to=20one=20asset=20fails=20(#2081)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #2080 Signed-off-by: Christian Zunker --- providers/assets.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/assets.go b/providers/assets.go index 4312e121c5..973241a619 100644 --- a/providers/assets.go +++ b/providers/assets.go @@ -59,7 +59,7 @@ func detectAssets(runtime *Runtime, assetCandidates []*inventory.Asset, upstream Upstream: upstreamConfig, }) if err != nil { - return err + continue } // Use the updated asset assetCandidates[i] = runtime.Provider.Connection.Asset