Skip to content

Commit

Permalink
Match updated override hook syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerry committed May 1, 2020
1 parent fa25d86 commit 3f31509
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/web/pipeline/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def default_string_query(self, q, options):
search = self._extra_query_options(search, options)
return search

def default_terms_query(self, q, scopes, options):
def default_match_query(self, q, scopes, options):

search = super().default_terms_query(q, scopes, options)
search = super().default_match_query(q, scopes, options)
search = self._extra_query_options(search, options)
return search

Expand Down

0 comments on commit 3f31509

Please sign in to comment.