This project is archived and is in readonly mode.

#6064 ✓stale
Robert Pankowecki

Exceptions from after_commit and after_rollback from observers are quietly swallowed

Reported by Robert Pankowecki | November 25th, 2010 @ 03:56 PM

class CarObserver < ActiveRecord::Observer

 def after_commit(car)
  puts "X"
  raise "X"
 end

 def after_rollback(car)
  puts "Y"
  raise "Y"
 end

 def after_update(car)
  puts "Z"
  raise "Z"
 end

end

ruby-1.9.2-head > Car.transaction do
ruby-1.9.2-head >      Car.new.save!
ruby-1.9.2-head ?>  end
X
 => true 
ruby-1.9.2-head > 
ruby-1.9.2-head >   Car.transaction do
ruby-1.9.2-head >       Car.new.save!
ruby-1.9.2-head ?>    raise ActiveRecord::Rollback
ruby-1.9.2-head ?>  end
Y
 => nil 
ruby-1.9.2-head > 
ruby-1.9.2-head >   Car.transaction do
ruby-1.9.2-head >      Car.first.save!
ruby-1.9.2-head ?>  end
Z
Y
RuntimeError: Z

As you can see the hooks are run but exceptions are swallowed. I think it is a bug.

Comments and changes to this ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile »

<h2 style="font-size: 14px">Tickets have moved to Github</h2>

The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>

Pages