Skip to content

Commit

Permalink
Merge pull request #7563 from aldbr/v8.0_FIX_CVMFS-locs-list
Browse files Browse the repository at this point in the history
[8.0] fix: make sure CVMFS_locations is a list
  • Loading branch information
fstagni authored Apr 12, 2024
2 parents a2785d8 + 395ae99 commit f19856b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,8 @@ def _writePilotScript(self, workingDirectory, pilotOptions, proxy=None, pilotExe
self.log.exception("Exception during pilot modules files compression", lException=be)

location = Operations().getValue("Pilot/pilotFileServer", "")
CVMFS_locations = Operations().getValue("Pilot/CVMFS_locations")
CVMFS_locations = Operations().getValue("Pilot/CVMFS_locations", [])

localPilot = pilotWrapperScript(
pilotFilesCompressedEncodedDict=pilotFilesCompressedEncodedDict,
pilotOptions=pilotOptions,
Expand Down

0 comments on commit f19856b

Please sign in to comment.