From 226116a44010f4da857f6b26d73bec2618dea890 Mon Sep 17 00:00:00 2001 From: Yuriy Ustushenko Date: Sat, 20 Jan 2018 16:55:31 +0700 Subject: Clear the transaction state when AR object is duped --- activerecord/lib/active_record/core.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'activerecord/lib/active_record/core.rb') diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb index 2c65f618dc..e1a0b2ecf8 100644 --- a/activerecord/lib/active_record/core.rb +++ b/activerecord/lib/active_record/core.rb @@ -382,8 +382,10 @@ module ActiveRecord _run_initialize_callbacks - @new_record = true - @destroyed = false + @new_record = true + @destroyed = false + @_start_transaction_state = {} + @transaction_state = nil super end -- cgit v1.2.3