Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Show more breadcrumbs
Peter Sherwood
athena
Commits
69f7eabc
Commit
69f7eabc
authored
6 years ago
by
Edward Moyse
Browse files
Options
Downloads
Patches
Plain Diff
More protections for publictools/servicehandles.
parent
f2b3a51b
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Control/AthenaConfiguration/python/ComponentAccumulator.py
+6
-3
6 additions, 3 deletions
Control/AthenaConfiguration/python/ComponentAccumulator.py
with
6 additions
and
3 deletions
Control/AthenaConfiguration/python/ComponentAccumulator.py
+
6
−
3
View file @
69f7eabc
w
# Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
from
AthenaCommon.Logging
import
logging
from
AthenaCommon.Logging
import
logging
from
AthenaCommon.Configurable
import
Configurable
,
ConfigurableService
,
ConfigurableAlgorithm
,
ConfigurableAlgTool
from
AthenaCommon.Configurable
import
Configurable
,
ConfigurableService
,
ConfigurableAlgorithm
,
ConfigurableAlgTool
...
@@ -199,8 +199,10 @@ class ComponentAccumulator(object):
...
@@ -199,8 +199,10 @@ class ComponentAccumulator(object):
def
_deduplicate
(
self
,
newComp
,
compList
):
def
_deduplicate
(
self
,
newComp
,
compList
):
#Check for duplicates:
#Check for duplicates:
for
comp
in
compList
:
for
comp
in
compList
:
if
comp
.
getType
()
==
newComp
.
getType
()
and
comp
.
get
JobOpt
Name
()
==
newComp
.
get
JobOpt
Name
():
if
comp
.
getType
()
==
newComp
.
getType
()
and
comp
.
get
Full
Name
()
==
newComp
.
get
Full
Name
():
#Found component of the same type and name
#Found component of the same type and name
if
isinstance
(
comp
,
PublicToolHandle
)
or
isinstance
(
comp
,
ServiceHandle
):
continue
# For public tools/services we check only their full name because they are already de-duplicated in addPublicTool/addSerivce
self
.
_deduplicateComponent
(
newComp
,
comp
)
self
.
_deduplicateComponent
(
newComp
,
comp
)
#We found a service of the same type and name and could reconcile the two instances
#We found a service of the same type and name and could reconcile the two instances
self
.
_msg
.
debug
(
"
Reconciled configuration of component %s
"
,
comp
.
getJobOptName
())
self
.
_msg
.
debug
(
"
Reconciled configuration of component %s
"
,
comp
.
getJobOptName
())
...
@@ -242,8 +244,9 @@ class ComponentAccumulator(object):
...
@@ -242,8 +244,9 @@ class ComponentAccumulator(object):
#Note that getattr for a list property works, even if it's not in ValuedProperties
#Note that getattr for a list property works, even if it's not in ValuedProperties
if
(
oldprop
!=
newprop
):
if
(
oldprop
!=
newprop
):
#found property mismatch
#found property mismatch
if
isinstance
(
oldprop
,
PublicToolHandle
)
or
isinstance
(
oldprop
,
ServiceHandle
):
#For public tools we check only their full name
if
isinstance
(
oldprop
,
PublicToolHandle
)
or
isinstance
(
oldprop
,
ServiceHandle
):
if
oldprop
.
getFullName
()
==
newprop
.
getFullName
():
if
oldprop
.
getFullName
()
==
newprop
.
getFullName
():
# For public tools/services we check only their full name because they are already de-duplicated in addPublicTool/addSerivce
continue
continue
else
:
else
:
raise
DeduplicationFailed
(
"
PublicToolHandle / ServiceHandle
'
%s.%s
'
defined multiple times with conflicting values %s and %s
"
%
\
raise
DeduplicationFailed
(
"
PublicToolHandle / ServiceHandle
'
%s.%s
'
defined multiple times with conflicting values %s and %s
"
%
\
...
...
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