Skip to content

Commit

Permalink
Merge pull request #7254 from aldbr/rel-v8r0_FIX_AREX-delegation-again
Browse files Browse the repository at this point in the history
[v8r0] fix: arex delegation
  • Loading branch information
fstagni authored Oct 20, 2023
2 parents 9649f6e + 04e2682 commit 60b50ec
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 60b50ec

Please sign in to comment.