chore(unified): remove unifiedStorageSearch feature toggle (#116109)

This commit is contained in:
Rafael Bortolon Paulovic
2026-01-12 13:22:48 +01:00
committed by GitHub
parent 1b52718c23
commit 0d7f46c08a
9 changed files with 6 additions and 26 deletions
+1 -1
View File
@@ -863,7 +863,7 @@ func newRebuildRequest(key NamespacedResource, minBuildTime, lastImportTime time
func (s *searchSupport) getOrCreateIndex(ctx context.Context, stats *SearchStats, key NamespacedResource, reason string) (ResourceIndex, error) {
if s == nil || s.search == nil {
return nil, fmt.Errorf("search is not configured properly (missing unifiedStorageSearch feature toggle?)")
return nil, fmt.Errorf("search is not configured properly (missing enable_search config?)")
}
ctx, span := tracer.Start(ctx, "resource.searchSupport.getOrCreateIndex")