IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27783 for trunk/pstamp


Ignore:
Timestamp:
Apr 27, 2010, 11:37:45 AM (16 years ago)
Author:
bills
Message:

make default for requests to be wait for cleaned up inputs to be updated

File:
1 edited

Legend:

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

    r27751 r27783  
    558558            }
    559559            if (!$fault) {
    560                 # don't wait for update unless the caller asks us to
    561                 if (!($option_mask & $PSTAMP_WAIT_FOR_UPDATE)) {
     560                # wait for update unless the customer asks us not to
     561                if (($option_mask & $PSTAMP_NO_WAIT_FOR_UPDATE)) {
    562562                    $newState = 'stop';
    563563                    $fault = $PSTAMP_NOT_AVAILABLE;
     
    724724                $fault = $PSTAMP_GONE;
    725725            } elsif (($data_state ne 'full') or ($need_magic and ($image->{magicked} < 0))) {
    726                 # don't wait for update unless the caller asks us to
    727                 if (!($option_mask & $PSTAMP_WAIT_FOR_UPDATE)) {
     726                # wait for update unless the customer asks us to not to
     727                if ($option_mask & $PSTAMP_NO_WAIT_FOR_UPDATE) {
    728728                    $newState = 'stop';
    729729                    $fault = $PSTAMP_NOT_AVAILABLE;
Note: See TracChangeset for help on using the changeset viewer.