Expiring a cache that doesnt exist is bliss not bad

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1895 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-07-22 20:08:29 +00:00
parent 34f9d30e39
commit 0223565a4d
1 changed files with 2 additions and 2 deletions

View File

@ -372,7 +372,7 @@ module ActionController #:nodoc:
def delete(name, options) #:nodoc:
File.delete(real_file_path(name))
rescue SystemCallError => e
Base.logger.error "Couldn't expire cache #{name} (#{e.message})" unless Base.logger.nil?
# If there's no cache, then there's nothing to complain about
end
def delete_matched(matcher, options) #:nodoc:
@ -381,7 +381,7 @@ module ActionController #:nodoc:
begin
File.delete(f)
rescue Object => e
Base.logger.error "Couldn't expire cache: #{f} (#{e.message})" unless Base.logger.nil?
# If there's no cache, then there's nothing to complain about
end
end
end