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
3 changes: 3 additions & 0 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,9 @@ tests:
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT
method: test {csv-spec:fork.ForkBeforeStatsByWithWhere}
issue: https://github.com/elastic/elasticsearch/issues/134817
- class: org.elasticsearch.xpack.esql.action.CrossClusterAsyncQueryStopIT
method: testStopQueryInlinestats
issue: https://github.com/elastic/elasticsearch/issues/134854
- class: org.elasticsearch.repositories.blobstore.testkit.analyze.MinioRepositoryAnalysisRestIT
method: testRepositoryAnalysis
issue: https://github.com/elastic/elasticsearch/issues/134853
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void testRepositoryAnalysis() throws Exception {
logger.info("creating repository [{}] of type [{}]", repository, repositoryType);
registerRepository(repository, repositoryType, true, repositorySettings);

final TimeValue timeout = TimeValue.timeValueSeconds(120);
final TimeValue timeout = TimeValue.timeValueSeconds(5 * 60);
final Request request = new Request(HttpPost.METHOD_NAME, "/_snapshot/" + repository + "/_analyze");
request.addParameter("blob_count", "10");
request.addParameter("concurrency", "4");
Expand Down