IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 4, 2010, 4:10:59 PM (16 years ago)
Author:
watersc1
Message:

Fix typos in pstamptool database queries.
Add pstampDependent.outdir entry to changes.txt.

Final tested code for detectability server.
Works on test cases that involve updates.

r

File:
1 edited

Legend:

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

    r27578 r27859  
    119119# XXX: have the jobs produce the reglist as with postage stamp requests
    120120my ($REGLIST, $reg_list) = tempfile("$out_dir/reqlist.XXXX", UNLINK => !$save_temps);
     121
    121122foreach my $job (@jobs) {
    122123    my $job_id = $job->{job_id};
     
    127128        # the job generated a response file put it into the Data Store
    128129        print $REGLIST "$response_file|||table|\n";
     130
     131        # do the same if we have an error file.  Should the parse data be uploaded as well?
     132        my $err_file = "parse_error.txt";
     133        if (-e "$out_dir/$err_file") {
     134            print $REGLIST "$err_file|||text|\n";
     135        }
    129136    } else  {
    130137        print STDERR "detect_query response file for job $job_id not found\n" if $verbose;
     
    138145    $command .= " --copy --datapath $out_dir";
    139146    $command .= " --type MOPS_DETECTABILITY_RESPONSE";
     147    $command .= " --ps0 $req_id";
    140148    $command .= " --dbname $dbname" if $dbname;
    141149
Note: See TracChangeset for help on using the changeset viewer.