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 7781d39 commit 081199bCopy full SHA for 081199b
src/DIRAC/Core/DISET/private/BaseClient.py
@@ -323,7 +323,7 @@ def __findServiceURL(self):
323
pass
324
325
# We randomize the list, and add at the end the failover URLs (System/FailoverURLs/Component)
326
- urlsList = List.randomize(List.fromChar(urls, ",")) + failoverUrls
+ urlsList = List.fromChar(urls, ",") + failoverUrls
327
self.__nbOfUrls = len(urlsList)
328
self.__nbOfRetry = (
329
2 if self.__nbOfUrls > 2 else 3
@@ -445,7 +445,6 @@ def _connect(self):
445
return self.__initStatus
446
if self.__enableThreadCheck:
447
self.__checkThreadID()
448
-
449
gLogger.debug(f"Trying to connect to: {self.serviceURL}")
450
try:
451
# Calls the transport method of the apropriate protocol.
0 commit comments