IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 36135 for trunk/pstamp/scripts


Ignore:
Timestamp:
Sep 19, 2013, 12:49:44 PM (13 years ago)
Author:
bills
Message:

if ppstamp returns PSTAMP_NO_VALID_PIXELS set fault for the job and exit
with success status

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pstamp/scripts/pstamp_job_run.pl

    r36104 r36135  
    266266        close $F;
    267267        $jobStatus = $PS_EXIT_SUCCESS;
    268     } elsif ($exitStatus == $PSTAMP_NO_OVERLAP) {
    269         $jobStatus = $PSTAMP_NO_OVERLAP;
     268    } elsif ($exitStatus == $PSTAMP_NO_OVERLAP || $exitStatus == $PSTAMP_NO_VALID_PIXELS) {
     269        $jobStatus = $exitStatus;
    270270    } else {
    271271        my_die( "ppstamp failed with error code: $exitStatus", $job_id, $exitStatus);
Note: See TracChangeset for help on using the changeset viewer.