예제 #1
0
def jobPostRun(job):
    """A set of functions run when job ends"""
    logger.info('JOB %s ENDED' % job.index)
예제 #2
0
def jobFail(job):
    logger.info('Job %s failed' % job.index)
예제 #3
0
def pypplPostRun(ppl):
    """A set of functions run when pipeline ends"""
    logger.info('PIPELINE ENDED')
예제 #4
0
def jobPreRun(job):
    """A set of functions run when job starts"""
    logger.info('JOB %s STARTED' % job.index)
예제 #5
0
def pypplPreRun(ppl):
    """A set of functions run when pipeline starts"""
    logger.info('PIPELINE STARTED')
예제 #6
0
def procPostRun(proc):
    """After a process has done"""
    logger.info(proc.name() + ' ENDED')
예제 #7
0
def procPreRun(proc):
    """After a process starts"""
    logger.info(proc.name() + ' STARTED')
예제 #8
0
def pplPostRun(ppl):
    logger.info('PYPPL POSTRUN')
예제 #9
0
def pplPreRun(ppl):
    logger.info('PYPPL PRERUN')