This message was deleted.
# community-support
s
This message was deleted.
s
Task configuration
Copy code
testClusters {
  runTask {
    testDistribution = 'archive'
    numberOfNodes = 2 --> removing this line works perfectly and hits the breakpoint
  }
}

tasks.register("run", RunTask) {
  useCluster testClusters.runTask;
  description = 'Runs opensearch in the foreground'
  group = 'Verification'

  impliesSubProjects = true
}
v
What is "testClusters"? That is not a standard Gradle thing. Maybe you should ask the creators of whatever plugin that is?