Skip to content

Commit 9bc74e2

Browse files
committed
Conflicts resolved with rel-v6r21
2 parents 2d25281 + 4495c8a commit 9bc74e2

File tree

3 files changed

+25
-7
lines changed

3 files changed

+25
-7
lines changed

WorkloadManagementSystem/DB/JobDB.py

+3
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@ def getAttributesForJobList(self, jobIDList, attrList=None):
127127
if not jobIDList:
128128
return S_OK({})
129129
if attrList:
130+
missingAttr = [repr(x) for x in attrList if x not in self.jobAttributeNames]
131+
if missingAttr:
132+
return S_ERROR("JobDB.getAttributesForJobList: Unknown Attribute(s): %s" % ", ".join(missingAttr))
130133
attrNames = ','.join(str(x) for x in attrList if x in self.jobAttributeNames)
131134
attr_tmp_list = attrList
132135
else:

codecov.yml

+16-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
comment: off
22

3-
coverage:
4-
status:
5-
project:
6-
default: off
7-
unittest:
8-
flags: unittest
9-
103
flags:
114
# filter the folder(s) you wish to measure by that flag
125
unittest:
@@ -25,3 +18,19 @@ flags:
2518
- DIRAC/TransformationSystem
2619
- DIRAC/Workflow
2720
- DIRAC/WorkloadManagementSystem
21+
22+
ignore:
23+
- ".*/[Tt]ests/.*"
24+
- ".*/[Tt]est/.*"
25+
- "^docs"
26+
- "^container"
27+
- "^tests"
28+
29+
coverage:
30+
status:
31+
project:
32+
default:
33+
threshold: 0.03
34+
patch:
35+
default:
36+
target: 0

release.notes

+6
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ FIX: (#4119) Not lhcb but dteam (for DIRAC certification)
6363
FIX: (#4139) client_dms.sh not lhcb specific
6464
CHANGE:(#4140) adapt transformation certification tests to dteam VO
6565

66+
[v6r21p12]
67+
68+
*WMS
69+
FIX: (#4155) JobDB.getAttributesForJobList: Return S_ERROR if unknown attributes are requested.
70+
Instead of potentially returning garbage a clear error message is returned.
71+
6672
[v6r21p11]
6773

6874
*Transformation

0 commit comments

Comments
 (0)