File tree 1 file changed +6
-1
lines changed
night_rally/fixtures/ansible
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -258,10 +258,15 @@ Vagrant.configure(2) do |config|
258
258
259
259
node_config . vm . provision "shell" , inline : install_night_rally_test_script ( base_ip , target_node_ip_addresses )
260
260
261
+ # Java 11 is used by default for release benchmarks, so should be installed always
262
+ # https://github.com/elastic/night-rally/issues/114#issuecomment-534100792
263
+ if node != nodes . first
264
+ node_config . vm . provision "shell" , inline : install_java ( 11 )
265
+ end
266
+
261
267
# To allow building Elasticsearch (nightlies) install the minimum set of java versions required on target nodes
262
268
if node != nodes . first && install_build_requirements
263
269
node_config . vm . provision "shell" , inline : install_java ( 12 )
264
- node_config . vm . provision "shell" , inline : install_java ( 11 )
265
270
node_config . vm . provision "shell" , inline : symlink_java_8
266
271
end
267
272
You can’t perform that action at this time.
0 commit comments