Skip to content

Commit 59d378f

Browse files
committed
Toggle flag to tail cluster log on failure
The flag was toggled by accident in a refactoring. This PR configures it so that we tail the cluster log on failure again.
1 parent cab2eee commit 59d378f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/java/org/elasticsearch/gradle/testclusters/TestClustersRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void stopCluster(ElasticsearchCluster cluster, boolean taskFailed) {
4848
}
4949
}
5050
} else {
51-
cluster.stop(false);
51+
cluster.stop(true);
5252
runningClusters.remove(cluster);
5353
}
5454
} else {

0 commit comments

Comments
 (0)