diff --git a/muted-tests.yml b/muted-tests.yml index 4f03b8921aab5..bb3c7fa1ff1a6 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -372,8 +372,6 @@ tests: - class: org.elasticsearch.xpack.test.rest.XPackRestIT method: test {p0=snapshot/20_operator_privileges_disabled/Operator only settings can be set and restored by non-operator user when operator privileges is disabled} issue: https://github.com/elastic/elasticsearch/issues/120973 -- class: org.elasticsearch.packaging.test.DockerTests - issue: https://github.com/elastic/elasticsearch/issues/120978 - class: org.elasticsearch.xpack.security.authc.service.ServiceAccountIT method: testAuthenticateShouldNotFallThroughInCaseOfFailure issue: https://github.com/elastic/elasticsearch/issues/120902 @@ -482,4 +480,4 @@ tests: issue: https://github.com/elastic/elasticsearch/issues/119870 - class: org.elasticsearch.xpack.inference.external.request.azureopenai.embeddings.AzureOpenAiEmbeddingsRequestTests method: testCreateRequest_WithEntraIdDefined - issue: https://github.com/elastic/elasticsearch/issues/125061 + issue: https://github.com/elastic/elasticsearch/issues/125061 \ No newline at end of file diff --git a/qa/packaging/src/test/java/org/elasticsearch/packaging/util/docker/Docker.java b/qa/packaging/src/test/java/org/elasticsearch/packaging/util/docker/Docker.java index 7bb45e6029409..6ec99d18042ca 100644 --- a/qa/packaging/src/test/java/org/elasticsearch/packaging/util/docker/Docker.java +++ b/qa/packaging/src/test/java/org/elasticsearch/packaging/util/docker/Docker.java @@ -187,7 +187,7 @@ public static void waitForElasticsearchToStart() { Thread.sleep(STARTUP_SLEEP_INTERVAL_MILLISECONDS); // Set COLUMNS so that `ps` doesn't truncate its output - psOutput = dockerShell.run("bash -c 'COLUMNS=3000 ps ax'").stdout(); + psOutput = dockerShell.run("bash -c 'COLUMNS=4000 ps ax'").stdout(); if (psOutput.contains("org.elasticsearch.bootstrap.Elasticsearch")) { isElasticsearchRunning = true;