Re: [Rails-core] Observers not firing on edge

2010-07-16 Thread Paul Campbell
Hi Mislav, Whatever changed in the last few days fixed the issue for me. I gave up on edge, went back to beta4, then a few days later came back to edge and all my tests are passing now. —P On Fri, Jul 16, 2010 at 11:59 AM, Mislav Marohnić wrote: > Hey Paul, I replied to a newer thread on the su

Re: [Rails-core] Observers not firing on edge

2010-07-16 Thread Mislav Marohnić
Hey Paul, I replied to a newer thread on the subject. Please do debugging steps as indicated there. On Thu, Jul 8, 2010 at 21:30, Paul Campbell wrote: > On Thu, Jul 8, 2010 at 7:50 PM, Mislav Marohnić > wrote: > > On Thu, Jul 8, 2010 at 16:55, Paul Campbell wrote: > >> > >> Most of my issues

Re: [Rails-core] Observers not firing on edge

2010-07-08 Thread Paul Campbell
On Thu, Jul 8, 2010 at 7:50 PM, Mislav Marohnić wrote: > On Thu, Jul 8, 2010 at 16:55, Paul Campbell wrote: >> >> Most of my issues have gone away, but an after_save observer that was >> working fine on beta4 simply isn't being called. > > I refactored observers a while ago (April), and was the l

Re: [Rails-core] Observers not firing on edge

2010-07-08 Thread Mislav Marohnić
On Thu, Jul 8, 2010 at 16:55, Paul Campbell wrote: > > Most of my issues have gone away, but an after_save observer that was > working fine on beta4 simply isn't being called. I refactored observers a while ago (April), and was the last to work on them (to my knowledge). Their tests still pass,

[Rails-core] Observers not firing on edge

2010-07-08 Thread Paul Campbell
Hi, I just updated to edge since I was having a few issues with beta4. Most of my issues have gone away, but an after_save observer that was working fine on beta4 simply isn't being called. class MyObserver < ActiveRecord::Observer observe :post def after_save(post) post.flush_cache e