We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef21797 commit dba7b1cCopy full SHA for dba7b1c
x-pack/plugin/eql/qa/correctness/build.gradle
@@ -44,8 +44,8 @@ testClusters.configureEach {
44
user username: 'admin', password: 'admin-password', role: 'superuser'
45
}
46
47
-tasks.withType(RunTask).configureEach {
48
- jvmArgs '-Xms8g', '-Xmx8g'
+def runTaskCluster = testClusters.register('runTask') {
+ jvmArgs '-Xms8g', '-Xmx8g'
49
50
51
tasks.named('javaRestTest').configure {
@@ -57,6 +57,6 @@ tasks.named('javaRestTest').configure {
57
58
59
tasks.register("runEqlCorrectnessNode", RunTask) {
60
- useCluster testClusters.named('runTask')
+ useCluster runTaskCluster
61
description = 'Runs elasticsearch in the foreground with gcs plugin and keystore credentials'
62
0 commit comments