We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b7f4a2 commit 092baebCopy full SHA for 092baeb
qa/vagrant/src/main/java/org/elasticsearch/packaging/test/ArchiveTestCase.java
@@ -372,7 +372,8 @@ public void test93ElasticsearchNodeCustomDataPathAndNotEsHomeWorkDir() throws IO
372
Archives.runElasticsearch(installation);
373
Archives.stopElasticsearch(installation);
374
375
- final Shell sh = new Shell(getTempDir());
+ final Shell sh = new Shell();
376
+ sh.setWorkingDirectory(getTempDir());
377
378
Result result = sh.run("echo y | " + installation.executables().elasticsearchNode + " unsafe-bootstrap");
379
assertThat(result.stdout, containsString("Master node was successfully bootstrapped"));
0 commit comments