Skip to content

Commit

Permalink
Updated log message
Browse files Browse the repository at this point in the history
  • Loading branch information
PalNilsson committed Nov 26, 2024
1 parent ed52d3f commit d302aad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PILOTVERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9.2.33
3.9.2.34
2 changes: 1 addition & 1 deletion pilot/util/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
RELEASE = '3' # released number should be fixed at 3 for Pilot 3
VERSION = '9' # version number is '1' for first release, '0' until then, increased for bigger updates
REVISION = '2' # revision number should be reset to '0' for every new version release, increased for small updates
BUILD = '33' # build number should be reset to '1' for every new development cycle
BUILD = '34' # build number should be reset to '1' for every new development cycle

SUCCESS = 0
FAILURE = 1
Expand Down
4 changes: 2 additions & 2 deletions pilot/util/monitoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ def set_cpu_consumption_time(job: JobData) -> tuple[int, str]:
f'CPU consumption time increased by a factor of {increase_factor} (over the limit of {factor})')
logger.warning(f"will not consider the new value: {_cpuconsumptiontime}")
else:
logger.debug(
f'CPU consumption time increased by a factor of {increase_factor} (below the limit of {factor})')
logger.info(
f'CPU consumption time changed by a factor of {increase_factor} (below the limit of {factor})')

# make sure that /proc/self/statm still exists, otherwise the job is no longer using CPU, ie discard the info
if check_proc_access():
Expand Down

0 comments on commit d302aad

Please sign in to comment.