Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -524,9 +524,6 @@ tests:
- class: org.elasticsearch.xpack.ml.integration.RevertModelSnapshotIT
method: testRevertModelSnapshot_DeleteInterveningResults
issue: https://github.com/elastic/elasticsearch/issues/132349
- class: org.elasticsearch.xpack.sql.action.SqlSearchPageTimeoutIT
method: testSearchContextIsCleanedUpAfterPageTimeoutForAggregationQueries
issue: https://github.com/elastic/elasticsearch/issues/132619
- class: org.elasticsearch.repositories.SnapshotMetricsIT
method: testSnapshotAPMMetrics
issue: https://github.com/elastic/elasticsearch/issues/132672
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void testSearchContextIsCleanedUpAfterPageTimeout(String query) throws Ex

SqlQueryResponse response = new SqlQueryRequestBuilder(client()).query(query)
.fetchSize(1)
.pageTimeout(TimeValue.timeValueMillis(500))
.pageTimeout(TimeValue.timeValueMillis(1000))
.get();

assertTrue(response.hasCursor());
Expand Down