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.
2 parents 9fad0a0 + 22f19ae commit 39c1d95Copy full SHA for 39c1d95
src/DIRAC/Resources/Computing/AREXComputingElement.py
@@ -75,7 +75,7 @@ def _reset(self):
75
self.proxyTimeLeftBeforeRenewal = self.ceParameters.get(
76
"ProxyTimeLeftBeforeRenewal", self.proxyTimeLeftBeforeRenewal
77
)
78
- self.arcRESTTimeout = self.ceParameters.get("ARCRESTTimeout", self.arcRESTTimeout)
+ self.arcRESTTimeout = float(self.ceParameters.get("ARCRESTTimeout", self.arcRESTTimeout))
79
80
# Build the URL based on the CEName, the port and the REST version
81
service_url = os.path.join("https://", "%s:%s" % (self.ceName, self.port))
0 commit comments