IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 14, 2009, 11:06:18 AM (17 years ago)
Author:
bills
Message:

Add data_group, dist_group, and note to the pipeline. These new columns will be used
for some of the tasks that label was used previously.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/ipp_cleanup.pl

    r25801 r25835  
    488488        # No skycells were found for some reason.
    489489        # Not technically an "error," but a "you told me to do X, and I can't. Please fix this yourself."
    490         my $command = "$stacktool -updaterun -stack_id $stage_id -state $error_state";
     490        my $command = "$stacktool -updaterun -stack_id $stage_id -set_state $error_state";
    491491        $command .= " -dbname $dbname" if defined $dbname;
    492492       
     
    561561            my $command = "$stacktool -stack_id $stage_id";
    562562            if ($mode eq "goto_purged") {
    563                 $command .= " -updaterun -state purged";
     563                $command .= " -updaterun -set_state purged";
    564564            }
    565565            elsif ($mode eq "goto_cleaned") {
    566                 $command .= " -updaterun -state cleaned";
     566                $command .= " -updaterun -set_state cleaned";
    567567            }
    568568            elsif ($mode eq "goto_scrubbed") {
    569                 $command .= " -updaterun -state scrubbed";
     569                $command .= " -updaterun -set_state scrubbed";
    570570            }
    571571            $command .= " -dbname $dbname" if defined $dbname;
     
    589589
    590590        } else {
    591             my $command = "$stacktool -updaterun  -stack_id $stage_id -state $error_state";
     591            my $command = "$stacktool -updaterun  -stack_id $stage_id -set_state $error_state";
    592592            $command .= " -dbname $dbname" if defined $dbname;
    593593           
     
    624624        # No skycells were found for some reason.
    625625        # Not technically an "error," but a "you told me to do X, and I can't. Please fix this yourself."
    626         my $command = "$difftool -updaterun -diff_id $stage_id -state $error_state";
     626        my $command = "$difftool -updaterun -diff_id $stage_id -set_state $error_state";
    627627        $command .= " -dbname $dbname" if defined $dbname;
    628628       
     
    741741
    742742        } else {
    743             my $command = "$difftool -updaterun -diff_id $stage_id -state $error_state";
     743            my $command = "$difftool -updaterun -diff_id $stage_id -set_state $error_state";
    744744
    745745            $command .= " -dbname $dbname" if defined $dbname;
Note: See TracChangeset for help on using the changeset viewer.