IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 19, 2013, 4:35:54 PM (13 years ago)
Author:
eugene
Message:

use MEMORY engine for dvoDetectionFull; add error handline for dvopsps; check mysql version; remove some test verbosity; check for image existence in dvoImages; skip bad batches but do not exit; fix precision issues; add -realgpc option (part of -test mode); log times in milliseconds

Location:
trunk/ippToPsps
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps

  • trunk/ippToPsps/jython/dvoobjects.py

    r35223 r35417  
    6767
    6868        if self.skychunk.parallel:
     69            if self.scratchDb.dbHost == "localhost":
     70                self.logger.info("dvopsps objects -parallel is incompatible with localhost for scratchdb")
     71                raise
     72               
    6973            cmd += " -parallel"
    7074
     
    7276        p = Popen(cmd, shell=True, stdout=PIPE)
    7377        p.wait()
     78        if p.returncode != 0:
     79            self.logger.errorPair("dvopsps failed on ", region)
     80            raise
    7481
    7582        # update lists after attempted sync
Note: See TracChangeset for help on using the changeset viewer.