I have the following in my `ApplicationController` ``` ruby around_action :delay_touching def delay_touching ActiveRecord::Base.delay_touching { yield } end ``` In Rails 4.2, everything works but after the update to Rails 5 I get the following error in lots of rspec tests: ``` Failure/Error: ActiveRecord::Base.delay_touching { yield } ActiveModel::MissingAttributeError: can't write unknown attribute `{:time=>2016-07-19 13:46:06 UTC} ``` When I remove the `around_action`, all specs run as expected.
I have the following in my
ApplicationControllerIn Rails 4.2, everything works but after the update to Rails 5 I get the following error in lots of rspec tests:
When I remove the
around_action, all specs run as expected.