Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
- Close regular and admin HTTPS test connections before shutting down REST clients to prevent selector assertions and thread leaks; provide valid timestamp mappings for featureless detector tests ([#1775](https://github.com/opensearch-project/anomaly-detection/pull/1775))
### Documentation
### Maintenance
- Rename the resource sharing feature flag to the non-experimental key ([#1778](https://github.com/opensearch-project/anomaly-detection/pull/1778))
- Increment version to 3.9.0-SNAPSHOT and declare the Jackson 2 core dependency required by PPL response parsing and Random Cut Forest serialization ([#1775](https://github.com/opensearch-project/anomaly-detection/pull/1775))
### Security
### Refactoring
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -587,8 +587,8 @@ def configureClusterPlugins(cluster, jobSchedulerFile, securityPluginFile, secur
node.setting("plugins.security.restapi.roles_enabled", "[\"all_access\", \"security_rest_api_access\"]")
node.setting("plugins.security.system_indices.enabled", "true")
if (System.getProperty("resource_sharing.enabled") == "true") {
node.setting("plugins.security.experimental.resource_sharing.enabled", "true")
node.setting("plugins.security.experimental.resource_sharing.protected_types", "[\"anomaly-detector\", \"forecaster\"]")
node.setting("plugins.security.resource_sharing.enabled", "true")
node.setting("plugins.security.resource_sharing.protected_types", "[\"anomaly-detector\", \"forecaster\"]")
}
}
}
Expand Down
Loading