Skip to content

Commit 7942e40

Browse files
committed
build: enhance check task instead of overwriting it.
(test task didn't run when check task ran)
1 parent 596ec18 commit 7942e40

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

x-pack/plugin/ccr/build.gradle

+1-4
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,8 @@ task internalClusterTest(type: RandomizedTestingTask,
3131
systemProperty 'es.set.netty.runtime.available.processors', 'false'
3232
}
3333

34-
check {
35-
dependsOn = [internalClusterTest, 'qa:multi-cluster:followClusterTest', 'qa:multi-cluster-with-security:followClusterTest']
36-
}
37-
3834
internalClusterTest.mustRunAfter test
35+
check.dependsOn(internalClusterTest, 'qa:multi-cluster:followClusterTest', 'qa:multi-cluster-with-security:followClusterTest')
3936

4037
dependencies {
4138
compileOnly "org.elasticsearch:elasticsearch:${version}"

0 commit comments

Comments
 (0)