diff --git a/src/WebAppDIRAC/WebApp/handler/PilotMonitorHandler.py b/src/WebAppDIRAC/WebApp/handler/PilotMonitorHandler.py index 459702e3..063e484f 100644 --- a/src/WebAppDIRAC/WebApp/handler/PilotMonitorHandler.py +++ b/src/WebAppDIRAC/WebApp/handler/PilotMonitorHandler.py @@ -135,10 +135,6 @@ def __request(self): if site: req["GridSite"] = site - taskQueueId = list(json.loads(self.get_argument("taskQueueId", "[]"))) - if taskQueueId: - req["TaskQueueID"] = taskQueueId - pilotId = list(json.loads(self.get_argument("pilotId", "[]"))) if pilotId: req["PilotJobReference"] = pilotId diff --git a/src/WebAppDIRAC/WebApp/static/DIRAC/PilotMonitor/classes/PilotMonitor.js b/src/WebAppDIRAC/WebApp/static/DIRAC/PilotMonitor/classes/PilotMonitor.js index 1e05ce0f..908171e6 100755 --- a/src/WebAppDIRAC/WebApp/static/DIRAC/PilotMonitor/classes/PilotMonitor.js +++ b/src/WebAppDIRAC/WebApp/static/DIRAC/PilotMonitor/classes/PilotMonitor.js @@ -93,9 +93,6 @@ Ext.define("DIRAC.PilotMonitor.classes.PilotMonitor", { { name: "GridType", }, - { - name: "TaskQueueID", - }, { name: "CurrentJobID", }, @@ -190,17 +187,6 @@ Ext.define("DIRAC.PilotMonitor.classes.PilotMonitor", { broker: "Broker", }; - var textFields = { - taskQueueId: { - name: "Task Queue ID", - type: "number", - }, - pilotId: { - name: "Pilot Job Reference", - type: "originalText", - }, - }; - var map = [ ["site", "site"], ["status", "status"], @@ -370,9 +356,6 @@ Ext.define("DIRAC.PilotMonitor.classes.PilotMonitor", { GridType: { dataIndex: "GridType", }, - TaskQueueID: { - dataIndex: "TaskQueueID", - }, BenchMark: { dataIndex: "BenchMark", },