Skip to content

Commit

Permalink
sweep: DIRACGrid#7527 fix: restored MemoryUsed in initialValues
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Mar 21, 2024
1 parent 0b16700 commit e59eb9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DIRAC/WorkloadManagementSystem/JobWrapper/Watchdog.py
Original file line number Diff line number Diff line change
Expand Up @@ -716,10 +716,10 @@ def calibrate(self):
self.log.warn("Could not get rss info from profiler", result["Message"])
else:
self.initialValues["RSS"] = result["Value"]
self.initialValues["MemoryUsed"] = result["Value"]
self.parameters["MemoryUsed"] = []
self.log.verbose("RSS(MB)", f"{result['Value']:.1f}")
self.parameters["RSS"] = []
self.initialValues["MemoryUsed"] = result["Value"]
self.parameters["MemoryUsed"] = []

# We exclude fuse so that mountpoints can be cleaned up by automount after a period unused
# (specific request from CERN batch service).
Expand Down

0 comments on commit e59eb9f

Please sign in to comment.