Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
paperclip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
paperclip
Commits
a23c21e9
Commit
a23c21e9
authored
Feb 03, 2009
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexpected system call errors don't cause rmdir'ing to fail
parent
4a05a8a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
lib/paperclip/storage.rb
+3
-0
test/integration_test.rb
+4
-0
No files found.
lib/paperclip/storage.rb
View file @
a23c21e9
...
...
@@ -63,6 +63,9 @@ module Paperclip
end
rescue
Errno
::
ENOTEMPTY
,
Errno
::
ENOENT
,
Errno
::
EINVAL
,
Errno
::
ENOTDIR
# Stop trying to remove parent directories
rescue
SystemCallError
=>
e
logger
.
info
(
"[paperclip] There was an unexpected error while deleting directories:
#{
e
.
class
}
"
)
# Ignore it
end
end
@queued_for_delete
=
[]
...
...
test/integration_test.rb
View file @
a23c21e9
...
...
@@ -106,6 +106,10 @@ class IntegrationTest < Test::Unit::TestCase
assert
!
File
.
exists?
(
File
.
dirname
(
@saved_path
))
assert
!
File
.
exists?
(
File
.
dirname
(
File
.
dirname
(
@saved_path
)))
end
before_should
"not die if an unexpected SystemCallError happens"
do
FileUtils
.
stubs
(
:rmdir
).
raises
(
Errno
::
EEXIST
)
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment