Skip to content

Commit 39c1d95

Browse files
authored
Merge pull request #6826 from sfayer/fix_arex_timeout
[v7r3] Fix AREX ARCRESTTimeout
2 parents 9fad0a0 + 22f19ae commit 39c1d95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DIRAC/Resources/Computing/AREXComputingElement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _reset(self):
7575
self.proxyTimeLeftBeforeRenewal = self.ceParameters.get(
7676
"ProxyTimeLeftBeforeRenewal", self.proxyTimeLeftBeforeRenewal
7777
)
78-
self.arcRESTTimeout = self.ceParameters.get("ARCRESTTimeout", self.arcRESTTimeout)
78+
self.arcRESTTimeout = float(self.ceParameters.get("ARCRESTTimeout", self.arcRESTTimeout))
7979

8080
# Build the URL based on the CEName, the port and the REST version
8181
service_url = os.path.join("https://", "%s:%s" % (self.ceName, self.port))

0 commit comments

Comments
 (0)