Skip to content

Commit 04e2682

Browse files
committed
fix: AREXCE delegation 404 not found
1 parent 9649f6e commit 04e2682

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)