Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5-Boxiang
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hamza
erp5-Boxiang
Commits
edb60c79
Commit
edb60c79
authored
Mar 02, 2012
by
Arnaud Fontaine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
When migrating a Document to ZODB, make sure it is removed on the filesystem if there was no error.
parent
24162a72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
product/ERP5/Document/BusinessTemplate.py
product/ERP5/Document/BusinessTemplate.py
+4
-2
No files found.
product/ERP5/Document/BusinessTemplate.py
View file @
edb60c79
...
...
@@ -3657,10 +3657,12 @@ class FilesystemToZodbTemplateItem(FilesystemDocumentTemplateItem,
filesystem_path
,
filesystem_file
,
class_id
).
aq_base
finally
:
filesystem_file
.
close
()
os
.
remove
(
filesystem_path
)
# Delete the file only if there was no error encountered during
# migration
os
.
remove
(
filesystem_path
)
# Update 'migrate_object_dict' with the new path
key
=
'%s/%s'
%
(
self
.
_tool_id
,
migrated_object
.
getId
())
...
...
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