Stefan Exner

Results 11 comments of Stefan Exner

I'd love to see sunspot updated to solr 7. I'm currently upgrading our application to use a dockerized version of it and had to alter solr's default schema quite a...

@mlh758 You're right, sunspot in its current form absolutely works with Solr 7 using the custom schema. I went through the schema API though as having a static `schema.xml` seems...

I went with monkeypatching this for now as I am using own dynamic fields with `solr.SortableTextField` ```ruby Sunspot::Query::Sort::FieldSort.class_eval do # # Workaround to make use of solr.SortableTextField, see also #...

It doesn't fix the actual issue, but I added a local monkey-patch to get `with_model` running with Rails 7, maybe it's of use to someone else. ```ruby # spec/support/with_model.rb module...

I experience the same behaviour on MacOS 12.0.1 with an M1 Max, it happens every time I put the Macbook to sleep over night and turn off the external power....

Your token might still be encryped, ran into the same problem because I didn't read to the bottom of the [python-miio help page](https://python-miio.readthedocs.io/en/latest/discovery.html) 🙈 I ran the token through the...

I'm using Rails 7 in api_only mode as well and everything works fine. As far as I see it, the problem here is `render json:` which basically just calls `@practice_tests.as_json`...

Altering the following method in `spec/support/examples/builder_initialization.rb` will also produce the error, causing the test to fail: ```ruby def settings_for(obj) settings = obj.object :settings, null: true settings.string :email settings end ```...

@Haniyya Thanks a lot for your work here! This fixes the problem with the endless loop, but introduced a different problem as it seems that the properties of an object...

@parrish Could you take a look at the changes here and possibly release a new gem version if you have time? That would help a lot :)