IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 25068


Ignore:
Timestamp:
Aug 13, 2009, 3:43:58 PM (17 years ago)
Author:
bills
Message:

last fix wasn't quite right. Also data_state isn't in all of the
ippTools output so skip check for data_state for now

File:
1 edited

Legend:

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

    r25067 r25068  
    242242        push @rowList, $row;
    243243    }
    244 
    245     if (@rowList) {
    246         $num_jobs += queueJobs($mode, \@rowList, $imageList);
    247     }
     244}
     245
     246if (@rowList) {
     247    $num_jobs += queueJobs($mode, \@rowList, $imageList);
    248248}
    249249
     
    354354        my $newState = "run";
    355355        my $fault = 0;
    356         if ($image->{data_state} ne "full") {
     356
     357if (0) {
     358        # XXX this doesn't work because not all ippTools outputs include data_state
     359        # fix chipTool also need to not make this test for raw stage
     360        if ((($stage ne 'stack') and ($image->{data_state} ne 'full')) or $image->{state} ne 'full' ){
    357361            # XXX here is where we need to queue an update job
    358362            # for now just say that the image is not available
     
    360364            $fault = 49;
    361365        }
     366}
    362367
    363368        $num_jobs++;
Note: See TracChangeset for help on using the changeset viewer.