DISCLAIMER: The issue is already logged here but to bring more attention to the large community, I am posting the issue here.
I have super simple setup for a model using active storage with acts_as_paranoid
class FileUpload < ApplicationRecord
acts_as_paranoid
has_one_attached :file
end
When the model is destroyed, it goes into infinite loop. Have you ever faced such problem? Do you have any solution?