From 45ed2e418cbd3f415babda255540a50237863ff4 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 21 Nov 2024 08:06:08 -0800 Subject: [PATCH] pkg/featuregates: Fix statusReleaseArchitecture enablement Fixing my sloppy copy/paste typo from 28b3b40869 (pkg: Propagate Release.Architecture, 2024-11-18, #1110). --- pkg/featuregates/featuregates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/featuregates/featuregates.go b/pkg/featuregates/featuregates.go index f38bb41b8d..533516c3fe 100644 --- a/pkg/featuregates/featuregates.go +++ b/pkg/featuregates/featuregates.go @@ -109,7 +109,7 @@ func CvoGatesFromFeatureGate(gate *configv1.FeatureGate, version string) CvoGate case features.FeatureGateUpgradeStatus: enabledGates.reconciliationIssuesCondition = true case features.FeatureGateImageStreamImportMode: - enabledGates.statusReleaseArchitecture = false + enabledGates.statusReleaseArchitecture = true } } for _, disabled := range g.Disabled {