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
54a18162
Commit
54a18162
authored
Feb 08, 2009
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Errno::EEXIST to the list of expected errors while deleting empty directories.
parent
86d0ecdf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
lib/paperclip/storage.rb
+1
-1
test/integration_test.rb
+1
-1
No files found.
lib/paperclip/storage.rb
View file @
54a18162
...
@@ -61,7 +61,7 @@ module Paperclip
...
@@ -61,7 +61,7 @@ module Paperclip
path
=
File
.
dirname
(
path
)
path
=
File
.
dirname
(
path
)
FileUtils
.
rmdir
(
path
)
FileUtils
.
rmdir
(
path
)
end
end
rescue
Errno
::
ENOTEMPTY
,
Errno
::
ENOENT
,
Errno
::
EINVAL
,
Errno
::
ENOTDIR
rescue
Errno
::
E
EXIST
,
Errno
::
E
NOTEMPTY
,
Errno
::
ENOENT
,
Errno
::
EINVAL
,
Errno
::
ENOTDIR
# Stop trying to remove parent directories
# Stop trying to remove parent directories
rescue
SystemCallError
=>
e
rescue
SystemCallError
=>
e
logger
.
info
(
"[paperclip] There was an unexpected error while deleting directories:
#{
e
.
class
}
"
)
logger
.
info
(
"[paperclip] There was an unexpected error while deleting directories:
#{
e
.
class
}
"
)
...
...
test/integration_test.rb
View file @
54a18162
...
@@ -108,7 +108,7 @@ class IntegrationTest < Test::Unit::TestCase
...
@@ -108,7 +108,7 @@ class IntegrationTest < Test::Unit::TestCase
end
end
before_should
"not die if an unexpected SystemCallError happens"
do
before_should
"not die if an unexpected SystemCallError happens"
do
FileUtils
.
stubs
(
:rmdir
).
raises
(
Errno
::
E
EXIST
)
FileUtils
.
stubs
(
:rmdir
).
raises
(
Errno
::
E
PIPE
)
end
end
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