Adam
Adam
When accessing associations on records that are subclassed, hyper-mesh only checks the associations on the records base_class ex code ```ruby class User < ActiveRecord::Base ... end class Administrator < User...
Models: ```ruby class Organization < ApplicationRecord has_many :memberships, class_name: 'OrganizationMembership', inverse_of: :organization end class OrganizationMembership < ApplicationRecord belongs_to :organization, inverse_of: :memberships end class Team < ApplicationRecord has_many :memberships, class_name: 'TeamMembership',...
I only found this while trying to debug why the client wasn't updating. I'm not sure where/when this breaks in use, but calling this stuff in the console breaks. ```ruby...
**Describe the bug** Currently, the `lock_prefix` configuration option is ignored, and all created locks currently all use the global default `uniquejobs`. I believe this to be a regression from #774,...