Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-11 08:41:05

0001 #!/usr/bin/env python
0002 # Licensed under the Apache License, Version 2.0 (the "License");
0003 # you may not use this file except in compliance with the License.
0004 # You may obtain a copy of the License at
0005 # http://www.apache.org/licenses/LICENSE-2.0
0006 #
0007 # Authors:
0008 # - Paul Nilsson, paul.nilsson@cern.ch, 2021
0009 
0010 import logging
0011 logger = logging.getLogger(__name__)
0012 
0013 
0014 def fast_monitor_tasks(job):
0015     """
0016     Perform fast monitoring tasks.
0017 
0018     :param job: job object.
0019     :return: exit code (int)
0020     """
0021 
0022     exit_code = 0
0023 
0024     logger.debug('fast monitor called')
0025 
0026     return exit_code