Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Rucio
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Sylvain Blunier
Rucio
Commits
9396e29c
Commit
9396e29c
authored
9 years ago
by
Wen Guan
Browse files
Options
Downloads
Patches
Plain Diff
[
RUCIO-1619
] fix normal conveyor submitter with scheme selection
Change-Id: Ia71fd6ff19fff0f64ff87e9c4f7fef6dce65cf51
parent
854c1b0a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/rucio/daemons/conveyor/submitter_utils.py
+3
-1
3 additions, 1 deletion
lib/rucio/daemons/conveyor/submitter_utils.py
with
3 additions
and
1 deletion
lib/rucio/daemons/conveyor/submitter_utils.py
+
3
−
1
View file @
9396e29c
...
...
@@ -314,7 +314,9 @@ def get_transfer(rse, req, scheme, mock, max_sources=4):
if
scheme
is
None
:
sources
,
metadata
=
get_sources
(
rse
,
None
,
req
,
max_sources
=
max_sources
)
else
:
sources
,
metadata
=
get_sources
(
rse
,
[
scheme
],
req
,
max_sources
=
max_sources
)
if
not
isinstance
(
scheme
,
list
):
scheme
=
scheme
.
split
(
'
,
'
)
sources
,
metadata
=
get_sources
(
rse
,
scheme
,
req
,
max_sources
=
max_sources
)
record_timer
(
'
daemons.conveyor.submitter.get_sources
'
,
(
time
.
time
()
-
ts
)
*
1000
)
logging
.
debug
(
'
Sources for request %s: %s
'
%
(
req
[
'
request_id
'
],
sources
))
if
sources
is
None
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment