From 0d173e0801cca7cce2a26c5c311533a6e6e13672 Mon Sep 17 00:00:00 2001 From: Chris Burr Date: Thu, 10 Oct 2024 13:37:57 +0200 Subject: [PATCH] fix (WMS): Getting pilot reference from job parameters --- .../WorkloadManagementSystem/Service/WMSAdministratorHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DIRAC/WorkloadManagementSystem/Service/WMSAdministratorHandler.py b/src/DIRAC/WorkloadManagementSystem/Service/WMSAdministratorHandler.py index 64c4c7cde40..2dea53c87ea 100755 --- a/src/DIRAC/WorkloadManagementSystem/Service/WMSAdministratorHandler.py +++ b/src/DIRAC/WorkloadManagementSystem/Service/WMSAdministratorHandler.py @@ -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)):