mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
cd9592959f
Currently `scope_chain` uses same array for building different `scope_chain` for different associations. During processing these arrays are sometimes mutated and because of in-place mutation the changed `scope_chain` impacts other reflections. Fix is to dup the value before adding to the `scope_chain`. Fixes #3882.
3 lines
78 B
Ruby
3 lines
78 B
Ruby
class DrinkDesigner < ActiveRecord::Base
|
|
has_one :chef, as: :employable
|
|
end
|