Skip to content

Commit

Permalink
fix: add the --wnVO option (backporting)
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Oct 31, 2023
1 parent 52e77c5 commit 10cb7c3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py
Original file line number Diff line number Diff line change
Expand Up @@ -1050,6 +1050,9 @@ def _getPilotOptions(self, queue, **kwargs):
pilotOptions.append(f"-Q {self.queueDict[queue]['QueueName']}")
# SiteName
pilotOptions.append(f"-n {queueDict['Site']}")
# VO
if self.vo:
pilotOptions.append(f"--wnVO={self.vo}")

# Generic Options
if "GenericOptions" in queueDict:
Expand Down

0 comments on commit 10cb7c3

Please sign in to comment.