Skip to content

Commit 1dbc0e1

Browse files
committed
fix: SiteDirector - fix CVMFS_locations string value
1 parent 106cca5 commit 1dbc0e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ def _getPilotOptions(self, queue, **kwargs):
10351035
# Preinstalled environment or list of CVMFS locations defined ?
10361036
preinstalledEnv = opsHelper.getValue("Pilot/PreinstalledEnv", "")
10371037
preinstalledEnvPrefix = opsHelper.getValue("Pilot/PreinstalledEnvPrefix", "")
1038-
CVMFS_locations = opsHelper.getValue("Pilot/CVMFS_locations", "")
1038+
CVMFS_locations = ",".join(opsHelper.getValue("Pilot/CVMFS_locations", []))
10391039
if preinstalledEnv:
10401040
pilotOptions.append(f"--preinstalledEnv={preinstalledEnv}")
10411041
elif preinstalledEnvPrefix:

0 commit comments

Comments
 (0)