Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down