We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28c3271 + 8e552e7 commit dfd676fCopy full SHA for dfd676f
src/WebAppDIRAC/WebApp/handler/PilotMonitorHandler.py
@@ -4,6 +4,7 @@
4
from DIRAC import gConfig, S_OK, gLogger
5
from DIRAC.Core.Utilities.Graphs.Palette import Palette
6
from DIRAC.MonitoringSystem.Client.WebAppClient import WebAppClient
7
+from DIRAC.WorkloadManagementSystem.Client.PilotManagerClient import PilotManagerClient
8
from WebAppDIRAC.Lib.WebHandler import WebHandler
9
10
@@ -139,7 +140,7 @@ def __request(self):
139
140
return req
141
142
def web_getJobInfoData(self, data):
- RPC = WebAppClient()
143
+ RPC = PilotManagerClient()
144
if self.get_argument("data_kind") == "getPilotOutput":
145
if (result := RPC.getPilotOutput(data))["OK"]:
146
return {"success": "true", "result": result["Value"]["StdOut"]}
0 commit comments