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 1b69de3 commit 2eb55daCopy full SHA for 2eb55da
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=2000 ps ax'").stdout();
+ psOutput = dockerShell.run("bash -c 'COLUMNS=3000 ps ax'").stdout();
191
192
if (psOutput.contains("org.elasticsearch.bootstrap.Elasticsearch")) {
193
isElasticsearchRunning = true;
0 commit comments