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 ec0f8be commit 0c9c0bcCopy full SHA for 0c9c0bc
qa/packaging/src/test/java/org/elasticsearch/packaging/util/docker/Docker.java
@@ -187,7 +187,7 @@ public static void waitForElasticsearchToStart() {
187
Thread.sleep(STARTUP_SLEEP_INTERVAL_MILLISECONDS);
188
189
// Set COLUMNS so that `ps` doesn't truncate its output
190
- psOutput = dockerShell.run("bash -c 'COLUMNS=3000 ps ax'").stdout();
+ psOutput = dockerShell.run("bash -c '/usr/share/elasticsearch/jdk/bin/jps -mlV'").stdout();
191
192
if (psOutput.contains("org.elasticsearch.bootstrap.Elasticsearch")) {
193
isElasticsearchRunning = true;
0 commit comments