Skip to content

Commit

Permalink
fix (WMS): Getting pilot reference from job parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisburr authored Oct 10, 2024
1 parent 5a66973 commit 0d173e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def export_getJobPilotOutput(self, jobID):

credDict = self.getRemoteCredentials()
vo = credDict.get("VO", Registry.getVOForGroup(credDict["group"]))
res = self.elasticJobParametersDB.getJobParameters(int(jobID), vo=vo, parNameList=["Pilot_Reference"])
res = self.elasticJobParametersDB.getJobParameters(int(jobID), vo=vo, paramList=["Pilot_Reference"])
if not res["OK"]:
return res
if res["Value"].get(int(jobID)):
Expand Down

0 comments on commit 0d173e0

Please sign in to comment.