Changeset 26347


Ignore:
Timestamp:
07/13/21 15:02:08 (4 years ago)
Author:
jdquinn
Message:

CHG: Error check works in testing under Debian Linux

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/solve/waitonlock.py

    r26345 r26347  
    7474            outs, errs = subproc.communicate() # NOTE: Need to consume output before checking return code
    7575            # TODO: Debug the following check under Linux (exits after first iteration with errs = "b")
     76            # UPDATE: Works in testing under Debian Linux system. Leaving comment for now so that it is easier to backtrace this issue if someone else encounters it.
    7677            #
    77             # if errs != '':
    78             #     raise Exception("waitonlock: check for existence of files failed: {}".format(errs))
     78            if errs != '':
     79                raise Exception("waitonlock: check for existence of files failed: {}".format(errs))
    7980            ispresent = not subproc.returncode
    8081            if ispresent:
Note: See TracChangeset for help on using the changeset viewer.