Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
8a89a272
Commit
8a89a272
authored
6 years ago
by
Michael Davis
Browse files
Options
Downloads
Patches
Plain Diff
[lpa-stream] Fixes retrieve queue constructor
parent
5a62eb23
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scheduler/OStoreDB/QueueItor.cpp
+2
-1
2 additions, 1 deletion
scheduler/OStoreDB/QueueItor.cpp
xroot_plugins/XrdCtaListPendingQueue.hpp
+1
-1
1 addition, 1 deletion
xroot_plugins/XrdCtaListPendingQueue.hpp
with
3 additions
and
2 deletions
scheduler/OStoreDB/QueueItor.cpp
+
2
−
1
View file @
8a89a272
...
...
@@ -180,7 +180,8 @@ template<>
QueueItor
<
objectstore
::
RootEntry
::
RetrieveQueueDump
,
objectstore
::
RetrieveQueue
>::
QueueItor
(
objectstore
::
Backend
&
objectStore
,
const
std
::
string
&
queue_id
)
:
m_objectStore
(
objectStore
),
m_onlyThisQueueId
(
!
queue_id
.
empty
())
m_onlyThisQueueId
(
!
queue_id
.
empty
()),
m_jobQueueIt
(
m_jobQueue
.
begin
())
{
objectstore
::
RootEntry
re
(
m_objectStore
);
objectstore
::
ScopedSharedLock
rel
(
re
);
...
...
This diff is collapsed.
Click to expand it.
xroot_plugins/XrdCtaListPendingQueue.hpp
+
1
−
1
View file @
8a89a272
...
...
@@ -101,7 +101,7 @@ public:
}
else
{
// Summary by tapepool or vid
for
(
bool
is_buffer_full
=
false
;
!
m_queueItor
.
end
()
&&
!
is_buffer_full
;
)
for
(
bool
is_buffer_full
=
false
;
!
(
is_buffer_full
||
m_queueItor
.
end
())
;
)
{
uint64_t
total_files
=
0
;
uint64_t
total_size
=
0
;
...
...
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