Remove feature toggles from bleve backend. (#110951)

* Remove feature toggles from search backend.

* Remove extra import.

* Remove unnecessary code.
This commit is contained in:
Peter Štibraný
2025-09-11 16:08:41 +02:00
committed by GitHub
parent 941a75964f
commit c6c8c6e928
6 changed files with 8 additions and 16 deletions
@@ -111,7 +111,7 @@ func TestIntegrationSearchAndStorage(t *testing.T) {
search, err := search.NewBleveBackend(search.BleveOptions{
FileThreshold: 0,
Root: tempDir,
}, tracing.NewNoopTracerService(), featuremgmt.WithFeatures(), nil)
}, tracing.NewNoopTracerService(), nil)
require.NoError(t, err)
require.NotNil(t, search)