Skip to content

Commit

Permalink
Add another index
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Sep 9, 2024
1 parent b644aa5 commit e26b643
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ public abstract class DotPrefixValidator<RequestType> implements MappedActionFil
* workarounds until that work can be completed.
*
* .elastic-connectors-v1 is used by enterprise search
* .ml-anomalies-unrelated is used by ML
* .ml-state-000001 is used by ML
*/
private static Set<String> IGNORED_INDEX_NAMES = Set.of(".elastic-connectors-v1");
private static Set<String> IGNORED_INDEX_NAMES = Set.of(".elastic-connectors-v1", ".ml-anomalies-unrelated");
private static Set<Pattern> IGNORED_INDEX_PATTERNS = Set.of(Pattern.compile("\\.ml-state-\\d+"));

DeprecationLogger deprecationLogger = DeprecationLogger.getLogger(DotPrefixValidator.class);
Expand Down

0 comments on commit e26b643

Please sign in to comment.