Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
erp5
Commits
94d2ec4c
Commit
94d2ec4c
authored
Aug 16, 2021
by
Nicolas Wavrant
Browse files
Options
Browse Files
Download
Plain Diff
erp5_web_service: add also prefix when writing temporary file
See merge request
nexedi/erp5!1481
parents
f64940ab
005273dd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bt5/erp5_web_service/DocumentTemplateItem/portal_components/document.erp5.FTPConnector.py
...plateItem/portal_components/document.erp5.FTPConnector.py
+2
-2
No files found.
bt5/erp5_web_service/DocumentTemplateItem/portal_components/document.erp5.FTPConnector.py
View file @
94d2ec4c
...
...
@@ -105,8 +105,8 @@ class FTPConnector(XMLObject):
try
:
if
self
.
isUseTemporaryFileOnWrite
():
# Simulation transaction system
conn
.
writeFile
(
remotepath
,
'%s.tmp'
%
filename
,
data
,
confirm
=
confirm
)
self
.
activate
(
activity
=
'SQLQueue'
).
renameFile
(
'%s/%s.tmp'
%
(
remotepath
,
filename
),
conn
.
writeFile
(
remotepath
,
'
_
%s.tmp'
%
filename
,
data
,
confirm
=
confirm
)
self
.
activate
(
activity
=
'SQLQueue'
).
renameFile
(
'
_
%s/%s.tmp'
%
(
remotepath
,
filename
),
'%s/%s'
%
(
remotepath
,
filename
))
else
:
conn
.
writeFile
(
remotepath
,
'%s'
%
filename
,
data
,
confirm
=
confirm
)
...
...
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