We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48f2e02 commit 3a26ee7Copy full SHA for 3a26ee7
src/DIRAC/Resources/Computing/AREXComputingElement.py
@@ -72,7 +72,7 @@ def _reset(self):
72
self.proxyTimeLeftBeforeRenewal = self.ceParameters.get(
73
"ProxyTimeLeftBeforeRenewal", self.proxyTimeLeftBeforeRenewal
74
)
75
- self.arcRESTTimeout = self.ceParameters.get("ARCRESTTimeout", self.arcRESTTimeout)
+ self.arcRESTTimeout = float(self.ceParameters.get("ARCRESTTimeout", self.arcRESTTimeout))
76
77
# Build the URL based on the CEName, the port and the REST version
78
service_url = os.path.join("https://", f"{self.ceName}:{self.port}")
0 commit comments