Skip to content

Commit 3337f5d

Browse files
authored
Merge pull request #8134 from aldbr/main_FIX_diracjobid-variable
[9.0] fix: replace DIRACJOBID with JOBID
2 parents 0efa45e + 2893a63 commit 3337f5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def __prepareCommand(self):
349349

350350
def __prepareEnvironment(self):
351351
"""Prepare the environment to be used by the payload."""
352-
os.environ["DIRACJOBID"] = str(self.jobID)
352+
os.environ["JOBID"] = str(self.jobID)
353353

354354
diracSite = DIRAC.siteName()
355355
os.environ["DIRACSITE"] = diracSite

0 commit comments

Comments
 (0)