Skip to content

Commit

Permalink
fix: CVMFS locations comes as a string
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Feb 28, 2024
1 parent 37e5a3c commit 490d2a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Pilot/pilotTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,8 @@ def __initJSON2(self):
self.releaseProject = pilotOptions.get("Project", self.releaseProject) # default from the code.
self.log.debug("Release project: %s" % self.releaseProject)

self.CVMFS_locations = pilotOptions.get("CVMFS_locations", self.CVMFS_locations) # default from the code.
if "CVMFS_locations" in pilotOptions:
self.CVMFS_locations = pilotOptions["CVMFS_locations"].replace(" ", "").split(",")
self.log.debug("CVMFS locations: %s" % self.CVMFS_locations)


Expand Down

0 comments on commit 490d2a6

Please sign in to comment.