Skip to content

Commit

Permalink
sweep: DIRACGrid#7563 fix: make sure CVMFS_locations is a list
Browse files Browse the repository at this point in the history
  • Loading branch information
aldbr authored and web-flow committed Apr 12, 2024
1 parent 3ea8832 commit c75cbf9
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 c75cbf9

Please sign in to comment.