Skip to content

Commit

Permalink
skip FileTransferEvent msgs in cache_status.py (dmwm#8262)
Browse files Browse the repository at this point in the history
  • Loading branch information
belforte authored Feb 23, 2024
1 parent 3af9d65 commit 4c55a32
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/task_process/cache_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4c55a32

Please sign in to comment.