Skip to content

Commit

Permalink
Merge pull request DIRACGrid#7564 from DIRACGridBot/cherry-pick-2-f19…
Browse files Browse the repository at this point in the history
…856b4b-integration

[sweep:integration] fix: make sure CVMFS_locations is a list
  • Loading branch information
fstagni committed Apr 12, 2024
2 parents 3ea8832 + c75cbf9 commit d553d07
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 @@ -704,7 +704,8 @@ def _writePilotScript(
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 d553d07

Please sign in to comment.