Skip to content

Commit

Permalink
fix: removed unused TaskQueueID field
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Feb 9, 2024
1 parent a089640 commit 687f187
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 21 deletions.
4 changes: 0 additions & 4 deletions src/WebAppDIRAC/WebApp/handler/PilotMonitorHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@ Ext.define("DIRAC.PilotMonitor.classes.PilotMonitor", {
{
name: "GridType",
},
{
name: "TaskQueueID",
},
{
name: "CurrentJobID",
},
Expand Down Expand Up @@ -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"],
Expand Down Expand Up @@ -370,9 +356,6 @@ Ext.define("DIRAC.PilotMonitor.classes.PilotMonitor", {
GridType: {
dataIndex: "GridType",
},
TaskQueueID: {
dataIndex: "TaskQueueID",
},
BenchMark: {
dataIndex: "BenchMark",
},
Expand Down

0 comments on commit 687f187

Please sign in to comment.