From b4bd67c4bf35e5598b92b65e9efba5f7703fafa6 Mon Sep 17 00:00:00 2001 From: Stefano Belforte Date: Fri, 23 Feb 2024 21:35:24 +0100 Subject: [PATCH] skip FileTransferEvent msgs in cache_status.py --- scripts/task_process/cache_status.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/task_process/cache_status.py b/scripts/task_process/cache_status.py index 20ed03b91a..7fededc27b 100644 --- a/scripts/task_process/cache_status.py +++ b/scripts/task_process/cache_status.py @@ -189,7 +189,9 @@ def parseJobLog(jel, nodes, nodeMap): if nodes[node]['StartTimes']: nodes[node]['WallDurations'][-1] = eventtime - nodes[node]['StartTimes'][-1] insertCpu(event, nodes[node]) - elif event["MyType"] == "JobDisconnectedEvent" or event["MyType"] == "JobReconnectedEvent": + elif event["MyType"] == "JobDisconnectedEvent" \ + or event["MyType"] == "JobReconnectedEvent" \ + or event["MyType"] == "FileTransferEvent" : # These events don't really affect the node status pass else: