Skip to content

Commit d033d81

Browse files
committed
Add allowed warning for REST Compatibility tests
1 parent 67a5424 commit d033d81

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

x-pack/plugin/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,6 @@ tasks.named("yamlRestCompatTestTransform").configure(
110110
task.skipTest("esql/40_tsdb/from index pattern unsupported counter", "TODO: support for subset of metric fields")
111111
task.skipTest("esql/40_unsupported_types/unsupported", "TODO: support for subset of metric fields")
112112
task.skipTest("esql/40_unsupported_types/unsupported with sort", "TODO: support for subset of metric fields")
113-
// Behavioral Analytics deprecated in 9.0
114-
task.addAllowedWarning("Behavioral Analytics is deprecated and will be removed in a future release.")
115113
}
116114
)
117115

x-pack/plugin/ent-search/qa/rest/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,11 @@ testClusters.configureEach {
3737
artifacts {
3838
restXpackTests(new File(projectDir, "src/yamlRestTest/resources/rest-api-spec/test"))
3939
}
40+
41+
42+
tasks.named("yamlRestCompatTestTransform").configure(
43+
{ task ->
44+
// Behavioral Analytics is deprecated with 9.0.0.
45+
task.addAllowedWarning("Behavioral Analytics is deprecated and will be removed in a future release.")
46+
}
47+
)

0 commit comments

Comments
 (0)