We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7da15b6 commit d931a5bCopy full SHA for d931a5b
src/Nest/ElasticClient-MultiSearch.cs
@@ -35,7 +35,7 @@ public MultiSearchResponse MultiSearch(MultiSearchDescriptor multiSearchDescript
35
multiSearchDescriptor._FixedIndex ??
36
new IndexNameResolver(this._connectionSettings).GetIndexForType(operation._ClrType);
37
38
- var types = operation._Types.HasAny() ? string.Join(",", operation._Types.Select(x => x.Resolve(this.Settings)) ) : null;
+ var types = operation._Types.HasAny() ? string.Join(",", operation._Types.Select(x => x.Resolve(this._connectionSettings)) ) : null;
39
40
var typeName = types
41
?? multiSearchDescriptor._FixedType
0 commit comments