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 1ee6f1e commit dab15e5Copy full SHA for dab15e5
test/fixtures/old-elasticsearch/src/main/java/oldes/OldElasticsearch.java
@@ -132,5 +132,9 @@ public static void main(String[] args) throws IOException {
132
Path tmp = Files.createTempFile(baseDir, null, null);
133
Files.write(tmp, Integer.toString(port).getBytes(StandardCharsets.UTF_8));
134
Files.move(tmp, baseDir.resolve("ports"), StandardCopyOption.ATOMIC_MOVE);
135
+
136
+ tmp = Files.createTempFile(baseDir, null, null);
137
+ Files.write(tmp, Integer.toString(pid).getBytes(StandardCharsets.UTF_8));
138
+ Files.move(tmp, baseDir.resolve("pid"), StandardCopyOption.ATOMIC_MOVE);
139
}
140
0 commit comments