You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The #initialize method loads allinson_flex before assigning any supplied attributes:
load_allinson_flex## This is the new partassign_attributes(attributes)ifattributes
When an object is initialized with a dynamic_schema_id value, this always ends up loading/building the newest dynamic schema since that value is not assigned until afterwards. A potential fix is:
self.dynamic_schema_id=attributes&.delete(:dynamic_schema_id)load_allinson_flex## This is the new partassign_attributes(attributes)ifattributes
The #initialize method loads allinson_flex before assigning any supplied attributes:
When an object is initialized with a
dynamic_schema_id
value, this always ends up loading/building the newest dynamic schema since that value is not assigned until afterwards. A potential fix is:A full fix also depends on fixing #61
The text was updated successfully, but these errors were encountered: