Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import shutil
import tarfile
from typing import Any

from git import Repo

from DIRAC import S_OK, gConfig, gLogger
Expand Down Expand Up @@ -217,6 +216,10 @@ def getCSDict(self, includeMasterCS: bool = True) -> DReturnType[Any]:

pilotDict["ConfigurationServers"] = configurationServers

preferredURLPatterns = gConfigurationData.extractOptionFromCFG("/DIRAC/PreferredURLPatterns")
if preferredURLPatterns:
pilotDict["PreferredURLPatterns"] = preferredURLPatterns

self.log.debug("Got pilotDict", str(pilotDict))

return S_OK(pilotDict)
Expand Down
Loading