Commented puts in init_testcache or init_nullcache

This commit is contained in:
COLA@Redmine.local 2017-02-14 17:12:45 +01:00
parent aeb9bc8120
commit 2b866ad190

View File

@ -56,12 +56,12 @@ module RedmineDmsf
end
def self.init_testcache
puts "Webdav::Cache: Enable MemoryStore cache."
#puts "Webdav::Cache: Enable MemoryStore cache."
@@WebDAVCache = ActiveSupport::Cache::MemoryStore.new(:namespace => "RedmineDmsfWebDAV")
end
def self.init_nullcache
puts "Webdav::Cache: Disable cache."
#puts "Webdav::Cache: Disable cache."
@@WebDAVCache = ActiveSupport::Cache::NullStore.new
end