File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
lib/table_sync/publishing Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class TableSync::Publishing::Batch
99 :event
1010
1111 def initialize ( attrs = { } )
12- attrs = attrs . deep_symbolize_keys
12+ attrs = attrs . with_indifferent_access
1313
1414 self . object_class = attrs [ :object_class ]
1515 self . original_attributes = attrs [ :original_attributes ]
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class TableSync::Publishing::Raw
1313 :event
1414
1515 def initialize ( attributes = { } )
16- attributes = attributes . deep_symbolize_keys
16+ attributes = attributes . with_indifferent_access
1717
1818 self . model_name = attributes [ :model_name ]
1919 self . table_name = attributes [ :table_name ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class TableSync::Publishing::Single
1010 :event
1111
1212 def initialize ( attrs = { } )
13- attrs = attrs . deep_symbolize_keys
13+ attrs = attrs . with_indifferent_access
1414
1515 self . object_class = attrs [ :object_class ]
1616 self . original_attributes = attrs [ :original_attributes ]
You can’t perform that action at this time.
0 commit comments