Skip to content

Commit df353fc

Browse files
committed
Merge remote-tracking branch 'upstream/main' into structured_source
2 parents 4fc1df0 + e9c614e commit df353fc

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

muted-tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,15 @@ tests:
549549
- class: org.elasticsearch.xpack.esql.analysis.AnalyzerTests
550550
method: testMagnitudePlanWithDenseVectorImplicitCasting
551551
issue: https://github.com/elastic/elasticsearch/issues/132985
552+
- class: org.elasticsearch.xpack.search.AsyncSearchErrorTraceIT
553+
method: testAsyncSearchFailingQueryErrorTraceDefault
554+
issue: https://github.com/elastic/elasticsearch/issues/133010
555+
- class: org.elasticsearch.xpack.esql.plugin.IndexResolutionIT
556+
method: testDoesNotResolveClosedIndex
557+
issue: https://github.com/elastic/elasticsearch/issues/133011
558+
- class: org.elasticsearch.test.rest.yaml.CcsCommonYamlTestSuiteIT
559+
method: test {p0=search/510_range_query_out_of_bounds/Test range query for float field with out of bounds lower limit}
560+
issue: https://github.com/elastic/elasticsearch/issues/133012
552561

553562
# Examples:
554563
#

x-pack/plugin/inference/src/main/java/org/elasticsearch/xpack/inference/services/elastic/request/ElasticInferenceServiceSparseEmbeddingsRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ public boolean[] getTruncationInfo() {
108108
// visible for testing
109109
static ElasticInferenceServiceUsageContext inputTypeToUsageContext(InputType inputType) {
110110
switch (inputType) {
111-
case SEARCH -> {
111+
case SEARCH, INTERNAL_SEARCH -> {
112112
return ElasticInferenceServiceUsageContext.SEARCH;
113113
}
114-
case INGEST -> {
114+
case INGEST, INTERNAL_INGEST -> {
115115
return ElasticInferenceServiceUsageContext.INGEST;
116116
}
117117
default -> {

0 commit comments

Comments
 (0)