Exemplo n.º 1
0
def start_operation_run(operation_run_id):
    operation_run = get_operation_run(operation_run_id=operation_run_id)
    if not operation_run:
        logger.info(
            'Operation `{}` does not exist any more.'.format(operation_run_id))

    operation_run.schedule_start()
Exemplo n.º 2
0
def pipelines_start_operation(operation_run_id: int) -> None:
    operation_run = get_operation_run(operation_run_id=operation_run_id)
    if not operation_run:
        _logger.info('Operation `%s` does not exist any more.',
                     operation_run_id)

    operation_run.schedule_start()
Exemplo n.º 3
0
def pipelines_start_operation(operation_run_id):
    operation_run = get_operation_run(operation_run_id=operation_run_id)
    if not operation_run:
        _logger.info('Operation `%s` does not exist any more.', operation_run_id)

    operation_run.schedule_start()