Sammy Larbi
Sammy Larbi
Did you ever find a solution for this?
What I ended up doing was changing our examples to send a JSON body instead of URL params. That gave nice output, and was more along the lines of what...
Would you accept a PR that adds a SessionBase abstract class that inherits from ActiveRecord::Base, and then switch to inheriting from it, so we can have some control over which...
It was easy enough to try, and *seems* to fix my problem, so I went ahead with the PR. I says *seems* because I have a lot of errors in...
The solution we ended up with was having our `session_store.rb` initializer look like this: ``` Rails.application.config.session_store :active_record_store class AppSessionBase < ActiveRecord::SessionStore::Session self.abstract_class = true connects_to database: { reading: :session_primary, writing:...
@h0jeZvgoxFepBQ2C we went with this solution: https://github.com/rails/activerecord-session_store/issues/167#issuecomment-737282029
I think it would belong in CPK more than it would belong here. But I'm not sure why CPK doesn't have it in the first place. @Arkanys what happens if...
Wow, I had no idea. :smile: I think it's probably because when I updated it to work for Rails 4, we should have rebased all my commits into one before...
@Arkanys Note that method is plural, `quote_column_names` not `quote_column_name` Do both gems override `insert_sql` and `sql_for_insert` ?
Let me ask a follow up question: can you give the stack trace of what it looks like without this patch? That may give an insight into another way to...