Skip to content

Commit 60b50ec

Browse files
authored
Merge pull request #7254 from aldbr/rel-v8r0_FIX_AREX-delegation-again
[v8r0] fix: arex delegation
2 parents 9649f6e + 04e2682 commit 60b50ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DIRAC/Resources/Computing/AREXComputingElement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def _getProxyFromDelegationID(self, delegationID):
329329
result = self._request("post", query, params=params)
330330
if not result["OK"]:
331331
self.log.error("Issue while interacting with delegation ", f"{delegationID}: {result['Message']}")
332-
return S_ERROR("Issue while interacting with the delegations")
332+
return S_ERROR(f"Issue while interacting with delegation {delegationID}: {result['Message']}")
333333
response = result["Value"]
334334

335335
proxyContent = response.text

0 commit comments

Comments
 (0)