Skip to content

Commit

Permalink
fix recommender size limit using SOLR with a GET call not a POST call
Browse files Browse the repository at this point in the history
  • Loading branch information
syphax-bouazzouni committed May 24, 2024
1 parent 2724634 commit a0e36c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def populate_classes(classes, ontology_acronyms=nil)
params["fq"] << " AND #{get_quoted_field_query_param(class_ids, "OR", "resource_id")}"
params["rows"] = 99999
# Replace fake query with wildcard
resp = LinkedData::Models::Class.search("*:*", params)
resp = LinkedData::Models::Class.submit_search_query("*:*", params)
populated_classes = []
resp["response"]["docs"].each do |doc|
doc = doc.symbolize_keys
Expand Down

0 comments on commit a0e36c8

Please sign in to comment.