Skip to content
Merged
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: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -390,9 +390,6 @@ tests:
- class: org.elasticsearch.xpack.sql.qa.jdbc.single_node.SingleNodeJdbcResultSetIT
method: testNoInfiniteRecursiveGetObjectCalls
issue: https://github.com/elastic/elasticsearch/issues/145269
- class: org.elasticsearch.xpack.inference.action.filter.ShardBulkInferenceActionFilterIT
method: testRestart {p0=true p1=true}
issue: https://github.com/elastic/elasticsearch/issues/145273
- class: org.elasticsearch.xpack.esql.expression.function.scalar.math.RoundToTests
method: testEvaluateInManyThreads {TestCase=<int, 20 fixed-interval ints>}
issue: https://github.com/elastic/elasticsearch/issues/145275
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import org.elasticsearch.test.ESTestCase;
import org.elasticsearch.test.InternalTestCluster;
import org.elasticsearch.xpack.inference.InferenceIndex;
import org.elasticsearch.xpack.inference.InferenceSecretsIndex;
import org.elasticsearch.xpack.inference.LocalStateInferencePlugin;
import org.elasticsearch.xpack.inference.Utils;
import org.elasticsearch.xpack.inference.mock.TestDenseInferenceServiceExtension;
Expand Down Expand Up @@ -218,7 +219,7 @@ public void testRestart() throws Exception {
storeModel(modelRegistry, model2);

internalCluster().fullRestart(new InternalTestCluster.RestartCallback());
ensureGreen(InferenceIndex.INDEX_NAME, "index_restart");
ensureGreen(InferenceIndex.INDEX_NAME, "index_restart", InferenceSecretsIndex.INDEX_NAME);

assertRandomBulkOperations("index_restart", isIndexRequest -> {
Map<String, Object> map = new HashMap<>();
Expand All @@ -228,7 +229,7 @@ public void testRestart() throws Exception {
});

internalCluster().fullRestart(new InternalTestCluster.RestartCallback());
ensureGreen(InferenceIndex.INDEX_NAME, "index_restart");
ensureGreen(InferenceIndex.INDEX_NAME, "index_restart", InferenceSecretsIndex.INDEX_NAME);

assertRandomBulkOperations("index_restart", isIndexRequest -> {
Map<String, Object> map = new HashMap<>();
Expand Down
Loading