I have a Rails photo observer model that runs after a photo is deleted. If there are no more photos left in the album, the album is unpublished. This works most of the time, but occasionally does not fire, leaving a published album with no photos in it. I have tried replicating the problem, but to no avail. My observer method is as follows:
def after_destroy(photo)
album_photos = photo.photo_album.photos.published
if album_photos.count > 0
...
else
photo.photo_album.update_attribute(:published, false)
end
expire_cache_for(photo)
end
FYI - the photo album update/save observer only fires if changing its published status to true, so nothing occurs there. I have tried numerous times to replicate this, but all to no avail. There are no 500 errors regarding this delete either. Please note that I am using Passenger and my photos are stored on Amazon S3. Any idea on how to proceed in debugging this?
Thanks.