From 04e2682f70b8db71469d94d6e4cfd5702c7d44f2 Mon Sep 17 00:00:00 2001 From: aldbr Date: Fri, 20 Oct 2023 19:39:25 +0900 Subject: [PATCH] fix: AREXCE delegation 404 not found --- src/DIRAC/Resources/Computing/AREXComputingElement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DIRAC/Resources/Computing/AREXComputingElement.py b/src/DIRAC/Resources/Computing/AREXComputingElement.py index 2b0e60b6e94..0ff6f151581 100755 --- a/src/DIRAC/Resources/Computing/AREXComputingElement.py +++ b/src/DIRAC/Resources/Computing/AREXComputingElement.py @@ -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