-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ML] Reinstating cold and frozen tier filters for linux and windows s…
…ecurity modules (#153222) The cold and frozen query filters which were added [here](#116696) were accidentally removed in this [PR](#131166)
- Loading branch information
1 parent
28a70da
commit daaa4a7
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,15 @@ | |
} | ||
} | ||
} | ||
] | ||
], | ||
"must_not": { | ||
"terms": { | ||
"_tier": [ | ||
"data_frozen", | ||
"data_cold" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"jobs": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,15 @@ | |
] | ||
} | ||
} | ||
] | ||
], | ||
"must_not": { | ||
"terms": { | ||
"_tier": [ | ||
"data_frozen", | ||
"data_cold" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"jobs": [ | ||
|