示例#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')