-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐛 Restore qt: 'standard'
to SolrService
#6677
Conversation
3462159
to
190550a
Compare
In `ActiveFedora::SolrService` we always assign the `qt: 'standard'`.[1] However, with [this old commit][1] we dropped passing the `qt: 'standard'` when we had `use_valkyrie` of true. We discovered this bug when upgrading Hyku and Bulkrax to Hyrax v3.x and some. Closes #6676 Related to: - #3857 [1]:https://github.com/samvera/active_fedora/blob/8e7d365a087974b4ff9b9217f792c0c049789de6/lib/active_fedora/solr_service.rb#L40-L48 [2]:be6104f
190550a
to
78abeaa
Compare
Also remove an un-tested element.
Perhaps it was to allow the application more flexibility when making solr queries? |
@dlpierce The main problem is that it means I amended the class to expose a configuration option. I did favor the configuration option that will not break existing implementations of Bulkrax and Hyku (e.g. by including My assumption is that folks using valkyrie will likely have specified a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love it!
Yeah, sorry I have specific memory about that param! |
This relates to the fact that `Hyrax::SolrService` does not behave the same way (for earlier versions of Hyrax). Related to: - samvera/hyrax#6677
This relates to the fact that `Hyrax::SolrService` does not behave the same way (for earlier versions of Hyrax). Related to: - samvera/hyrax#6677
tl;dr Can anyone explain why we don't want
qt: 'standard'
for Valkyrie connections?In
ActiveFedora::SolrService
we always assign theqt: 'standard'
.1However, with this old commit we dropped passing the
qt: 'standard'
when we haduse_valkyrie
of true.We discovered this bug when upgrading Hyku and Bulkrax to Hyrax v3.x and some.
Closes #6676
Related to:
@samvera/hyrax-code-reviewers