vectorStore stabilization

- `vectorStore` feature is always enabled
- `vectorStore` can no longer be set in the `/experimental-features` PATCH route
- `vectorStore` status is no longer returned in the `/experimental-features` GET route
This commit is contained in:
Louis Dureuil 2025-01-13 10:58:39 +01:00
parent e568dbbabb
commit d78951feb7
No known key found for this signature in database
2 changed files with 22 additions and 4 deletions

View file

@ -110,6 +110,7 @@ impl FeatureData {
metrics: metrics || persisted_features.metrics,
logs_route: logs_route || persisted_features.logs_route,
contains_filter: contains_filter || persisted_features.contains_filter,
vector_store: true,
..persisted_features
}));