Maintenance: Fix a crash in the error handler of Zammad's file cache.

This commit is contained in:
Martin Gruner 2021-09-13 14:45:48 +02:00
parent 16ce1d6eb0
commit 6636af8d34

View file

@ -8,7 +8,7 @@ module ActiveSupport
# time, just log it
super
rescue => e
Rails.logger.error "Can't write cache #{key}: #{e.inspect}"
Rails.logger.error "Can't write cache #{name}: #{e.inspect}"
Rails.logger.error e
end
end