We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent def90a6 commit 6bb3755Copy full SHA for 6bb3755
pkg/cli/admin/release/extract_tools.go
@@ -1250,7 +1250,9 @@ func (mr *ManifestReceiver) TarEntryCallbackDoneCallback() error {
1250
delta = delta.Difference(sets.New[configv1.ClusterVersionCapability](mr.inclusionConfiguration.Capabilities.EnabledCapabilities...))
1251
enabled.Insert(mr.inclusionConfiguration.Capabilities.EnabledCapabilities...)
1252
}
1253
- klog.Infof("Those capabilities become implicitly enabled for the incoming release %s", sets.List(delta))
+ if delta.Len() > 0 {
1254
+ klog.Infof("Those capabilities become implicitly enabled for the incoming release %s", sets.List(delta))
1255
+ }
1256
1257
mr.enabled = enabled.UnsortedList()
1258
mr.enabledResolved = true
0 commit comments