IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 22, 2009, 4:48:49 PM (17 years ago)
Author:
watersc1
Message:

New sql files to correctly select out files that are pending or done
with cleanup. This returns files marked as purged and scrubbed as
well as simpled cleaned.

Typo fixes in ipp_cleanup.pl .

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/cleanup/ippScripts/scripts/ipp_cleanup.pl

    r24785 r24902  
    759759    # XXX may need a different my_die for each stage
    760760    my $imfiles;                      # Array of component files
    761     my $command = "$dettool -pendingcleanup_processedimfile -chip_id $stage_id"; # Command to run
     761    my $command = "$dettool -pendingcleanup_processedimfile -det_id $stage_id"; # Command to run
    762762    $command .= " -dbname $dbname" if defined $dbname;
    763763    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = run(command => $command, verbose => $verbose);
     
    12391239    # XXX may need a different my_die for each stage
    12401240    my $imfiles;                      # Array of component files
    1241     my $command = "$dettool -pendingcleanup_residimfile -chip_id $stage_id"; # Command to run
     1241    my $command = "$dettool -pendingcleanup_residimfile -det_id $stage_id"; # Command to run
    12421242    $command .= " -dbname $dbname" if defined $dbname;
    12431243    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = run(command => $command, verbose => $verbose);
     
    13261326
    13271327        if ($status)  {
    1328             my $command = "$dettool -updateresidimfile -chip_id $stage_id -exp_id $exp_id -iteration $iteration -class_id $class_id";
     1328            my $command = "$dettool -updateresidimfile -det_id $stage_id -exp_id $exp_id -iteration $iteration -class_id $class_id";
    13291329            if ($mode eq "goto_purged") {
    13301330                $command .= " -data_state purged";
     
    13461346            }
    13471347        } else {
    1348             my $command = "$dettool -updateresidimfile -chip_id $stage_id -exp_id $exp_id -iteration $iteration -class_id $class_id -data_state $error_state";
     1348            my $command = "$dettool -updateresidimfile -det_id $stage_id -exp_id $exp_id -iteration $iteration -class_id $class_id -data_state $error_state";
    13491349            $command .= " -dbname $dbname" if defined $dbname;
    13501350
Note: See TracChangeset for help on using the changeset viewer.