Skip to content

Commit 10cb7c3

Browse files
committed
fix: add the --wnVO option (backporting)
1 parent 52e77c5 commit 10cb7c3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,6 +1050,9 @@ def _getPilotOptions(self, queue, **kwargs):
10501050
pilotOptions.append(f"-Q {self.queueDict[queue]['QueueName']}")
10511051
# SiteName
10521052
pilotOptions.append(f"-n {queueDict['Site']}")
1053+
# VO
1054+
if self.vo:
1055+
pilotOptions.append(f"--wnVO={self.vo}")
10531056

10541057
# Generic Options
10551058
if "GenericOptions" in queueDict:

0 commit comments

Comments
 (0)