Skip to content

Commit 2aa519b

Browse files
committed
Workaround docker test issue
1 parent e214b1f commit 2aa519b

File tree

1 file changed

+1
-1
lines changed
  • qa/packaging/src/test/java/org/elasticsearch/packaging/util/docker

1 file changed

+1
-1
lines changed

qa/packaging/src/test/java/org/elasticsearch/packaging/util/docker/Docker.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public static void waitForElasticsearchToStart() {
187187
Thread.sleep(STARTUP_SLEEP_INTERVAL_MILLISECONDS);
188188

189189
// Set COLUMNS so that `ps` doesn't truncate its output
190-
psOutput = dockerShell.run("bash -c 'COLUMNS=4000 ps ax'").stdout();
190+
psOutput = dockerShell.run("bash -c 'COLUMNS=5000 ps ax'").stdout();
191191

192192
if (psOutput.contains("org.elasticsearch.bootstrap.Elasticsearch")) {
193193
isElasticsearchRunning = true;

0 commit comments

Comments
 (0)