IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 7, 2019, 1:25:05 PM (7 years ago)
Author:
fairlamb
Message:

separate out jira and confluence from the main call

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ipp-259_genericise_backups/tools/backups/utils/subprocess_utils.py

    r40898 r40913  
    4242
    4343    try:
    44         subprocess.check_call(command_and_args)
     44        subprocess_exitcode = subprocess.check_call(command_and_args)
    4545    except (subprocess.CalledProcessError) as cpe:
    4646        raise SubprocessError(f"{type(cpe)} in python simple_unix_wrapper") from cpe
    4747    except (ValidationError) as ve:
    4848        raise ValidationError(f"{type(ve)} in python simple_unix_wrapper") from ve
    49     return 0
     49    return subprocess_exitcode
Note: See TracChangeset for help on using the changeset viewer.