2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2021-05-31 13:05:54 +00:00
|
|
|
module ActiveSupport
|
|
|
|
module Cache
|
|
|
|
class ZammadFileStore < FileStore
|
|
|
|
def write(name, value, options = {})
|
|
|
|
# in certain cases, caches are deleted by other thread at same
|
|
|
|
# time, just log it
|
|
|
|
super
|
|
|
|
rescue => e
|
2021-09-13 12:45:48 +00:00
|
|
|
Rails.logger.error "Can't write cache #{name}: #{e.inspect}"
|
2021-05-31 13:05:54 +00:00
|
|
|
Rails.logger.error e
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|