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
bfd137c6
Commit
bfd137c6
authored
Jul 20, 2018
by
Aris Angelogiannopoulos
Browse files
FTS-1259
Fix concatenation error boolean and str
parent
535c81aa
Pipeline
#452640
passed with stage
in 2 minutes and 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/fts3rest/fts3rest/lib/JobBuilder.py
View file @
bfd137c6
...
...
@@ -511,7 +511,7 @@ class JobBuilder(object):
self
.
job
[
'job_type'
]
=
'N'
auto_session_reuse
=
pylons
.
config
.
get
(
'fts3.AutoSessionReuse'
,
'false'
)
log
.
debug
(
"AutoSessionReuse is "
+
auto_session_reuse
+
" job_type is"
+
str
(
job_type
))
log
.
debug
(
"AutoSessionReuse is "
+
str
(
auto_session_reuse
)
+
" job_type is"
+
str
(
job_type
))
max_reuse_files
=
pylons
.
config
.
get
(
'fts3.AutoSessionReuseMaxFiles'
,
1000
)
max_size_small_file
=
pylons
.
config
.
get
(
'fts3.AutoSessionReuseMaxSmallFileSize'
,
104857600
)
#100MB
max_size_big_file
=
pylons
.
config
.
get
(
'fts3.AutoSessionReuseMaxBigFileSize'
,
1073741824
)
#1GB
...
...
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