Kyle Schutt
Kyle Schutt
I'm having the same issue in `v0.9.1` in Rails `5.0.4`. I was able to reproduce your issue above, but it also similarly affects `eager_load` and `includes`. We also use query...
@dvandersluis @zhangliwen I found a solution for `ActiveRecord::Relation` objects using `Octopus::RelationProxy`. I'm still working through the code to figure out why the proxy isn't being applied to `ActiveRecord::Relation` objects, but...
Another solution is patching the proxy to use ShardTracking. ```ruby module Octopus class Proxy include ::Octopus::ShardTracking::Attribute end end module Octopus def self.using(shard, &block) conn = ActiveRecord::Base.connection if conn.is_a?(Octopus::Proxy) conn.current_shard =...
Based on these discussions, and also from #168 and #160. Wouldn't it be possible to eliminate locking by performing the following? 1) Before any transfer, ensure the `AccountBalance` object exists...
@marcosmarxm is this only affecting AirByte Cloud?
1. Are the first 2 config changes specifically geared towards disabling CSRF protection on the Apple OAuth flow? 2. Why is the last config change needed for production?
Thanks for the response. I was worried I was missing something. I'll take a look at it again and see how far I can get.