Skip to content

Commit d2fea78

Browse files
committed
fix (REA): just ignore a shifter if we cannot get a matching proxy
1 parent 84eaa36 commit d2fea78

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/DIRAC/RequestManagementSystem/private/RequestTask.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ def __setupManagerProxies(self):
106106
userDN, userGroup, requiredTimeLeft=1200, cacheTime=4 * 43200
107107
)
108108
if not getProxy["OK"]:
109-
return S_ERROR(f"unable to setup shifter proxy for {shifter}: {getProxy['Message']}")
109+
self.log.error("unable to setup shifter proxy", f"{shifter}: {getProxy['Message']}")
110+
continue
110111
chain = getProxy["chain"]
111112
fileName = getProxy["Value"]
112113
self.log.debug(f"got {shifter}: {userName} {userGroup}")

0 commit comments

Comments
 (0)