Skip to content

Commit e9d6454

Browse files
authored
Merge pull request #786 from fstagni/60_fixes_4
fix: remove CPUTime column
2 parents 46dd071 + 69dccb8 commit e9d6454

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

src/WebAppDIRAC/WebApp/handler/AccountingHandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ def web_getCsvPlotData(self, typeName, plotName, timeSelector: int, grouping, **
282282
for timeSlot in range(timeStart, int(TimeUtilities.toEpoch(end)), granularity):
283283
lineData = [str(timeSlot)]
284284
for key in groupKeys:
285-
lineData.append(str(data[key][timeSlot]) if timeSlot in data[key] else "")
285+
lineData.append(str(data[key][str(timeSlot)]) if str(timeSlot) in data[key] else "")
286286
strData += f"{','.join(lineData)}\n"
287287
else:
288288
strData = f"{','.join(groupKeys)}\n"

src/WebAppDIRAC/WebApp/static/DIRAC/JobMonitor/classes/JobMonitor.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,6 @@ Ext.define("DIRAC.JobMonitor.classes.JobMonitor", {
120120
{
121121
name: "RescheduleTime",
122122
},
123-
{
124-
name: "CPUTime",
125-
},
126123
{
127124
name: "JobGroup",
128125
},
@@ -419,12 +416,6 @@ Ext.define("DIRAC.JobMonitor.classes.JobMonitor", {
419416
hidden: true,
420417
},
421418
},
422-
CPUTime: {
423-
dataIndex: "CPUTime",
424-
properties: {
425-
hidden: true,
426-
},
427-
},
428419
JobGroup: {
429420
dataIndex: "JobGroup",
430421
properties: {

0 commit comments

Comments
 (0)