Changeset 26345


Ignore:
Timestamp:
07/09/21 16:23:14 (4 years ago)
Author:
jdquinn
Message:

BUG: Commenting out check of subprocess error for now

File:
1 edited

Legend:

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

    r26344 r26345  
    7373            subproc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
    7474            outs, errs = subproc.communicate() # NOTE: Need to consume output before checking return code
    75             if errs != '':
    76                 raise Exception("waitonlock: check for existence of files failed: {}".format(errs))
     75            # TODO: Debug the following check under Linux (exits after first iteration with errs = "b")
     76            #
     77            # if errs != '':
     78            #     raise Exception("waitonlock: check for existence of files failed: {}".format(errs))
    7779            ispresent = not subproc.returncode
    7880            if ispresent:
Note: See TracChangeset for help on using the changeset viewer.