Skip to content

Commit

Permalink
Hotfix prod loading wrong config file (#6444)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrini authored Apr 17, 2022
1 parent 3503507 commit 090a10f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openlibrary/plugins/worksearch/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def run_solr_query(
if use_dismax:
params.append(('q', ' '.join(q_list)))
params.append(('defType', 'dismax'))
if get_solr_next():
if False: # get_solr_next():
params.append(('qf', 'text alternative_title^20 author_name^20'))
else:
params.append(('qf', 'text title^20 author_name^20'))
Expand Down

0 comments on commit 090a10f

Please sign in to comment.