Does anyone know of threading issues with the acts_as_audited plugin in
Rails/Jruby with config.threadsafe! on ?
def set_audit_user
self.user = Thread.current[:acts_as_audited_user] if
Thread.current[:acts_as_audited_user]
nil # prevent stopping callback chains
end
*
*
This method seems to return random users with active sessions in the
system no matter what we try. Increasing the number of min/max
runtimes from 1/1 to something like 3/3 strangely seemed to make the
problem less noticable but didnt solve.
*
*
Anyone have any ideas why this would be blowing up?
*
*
Regards,
AD