Skip to content

Commit 5a9790a

Browse files
Fix __process_multi_match
1 parent 68442df commit 5a9790a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/django/api/views/v1/opensearch_query_builder/opensearch_query_director.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def __process_multi_match(self, query_params):
121121
multi_match_query = query_params.get(V1_PARAMETERS_LIST.QUERY)
122122

123123
if multi_match_query and hasattr(self.__builder, 'add_multi_match'):
124-
self.add_multi_match(multi_match_query)
124+
self.__builder.add_multi_match(multi_match_query)
125125

126126
def __process_aggregation(self, query_params):
127127
aggregation = query_params.get(V1_PARAMETERS_LIST.AGGREGATION)

0 commit comments

Comments
 (0)