Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
File Transfer Service
fts-rest
Commits
a7fe5a12
Commit
a7fe5a12
authored
Feb 14, 2017
by
Maria Arsuaga Rios
Browse files
FTS-893
Default value false
parent
064e121f
Pipeline
#83109
passed with stage
in 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/fts3rest/fts3rest/lib/JobBuilder.py
View file @
a7fe5a12
...
...
@@ -502,10 +502,8 @@ class JobBuilder(object):
if
job_type
==
'N'
and
not
self
.
is_multiple
:
self
.
job
[
'job_type'
]
=
'N'
if
pylons
.
config
.
get
(
'fts3.AutoSessionReuse'
,
None
):
auto_session_reuse
=
'false'
else
:
auto_session_reuse
=
pylons
.
config
[
'fts3.AutoSessionReuse'
]
auto_session_reuse
=
pylons
.
config
.
get
(
'fts3.AutoSessionReuse'
,
'false'
);
if
(
auto_session_reuse
==
'true'
and
self
.
job
[
'source_se'
]
and
self
.
job
[
'dest_se'
]
and
(
job_type
is
None
)
and
(
len
(
self
.
files
)
>
1
))
:
small_files
=
0
min_small_files
=
len
(
self
.
files
)
-
2
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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