Skip to content

Commit

Permalink
fix: AREXCE delegation 404 not found
Browse files Browse the repository at this point in the history
  • Loading branch information
aldbr committed Oct 20, 2023
1 parent 9649f6e commit 04e2682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DIRAC/Resources/Computing/AREXComputingElement.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def _getProxyFromDelegationID(self, delegationID):
result = self._request("post", query, params=params)
if not result["OK"]:
self.log.error("Issue while interacting with delegation ", f"{delegationID}: {result['Message']}")
return S_ERROR("Issue while interacting with the delegations")
return S_ERROR(f"Issue while interacting with delegation {delegationID}: {result['Message']}")
response = result["Value"]

proxyContent = response.text
Expand Down

0 comments on commit 04e2682

Please sign in to comment.