IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 16, 2013, 6:27:02 AM (13 years ago)
Author:
eugene
Message:

add error handling for dvopsps skytable; add config entry for memory usage for memory db tables; add / fix version parsing; error handling for xmllint; error handline for dvograbber (unused); set max_heap_table_size before creating memory tables; add error handling for dvopsps objects; break on error from dvopsps detections; do not try to populate Chip table unless it exists; skip batch on failure, but continue to load

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20130307/ippToPsps/jython/detectionbatch.py

    r35369 r35402  
    909909                    return False
    910910
    911         if self.populatePspsTablesChip("Chip", 0, 0, results, tables): otaCount = otaCount + 1
    912 
    913         if self.skipBatch:
    914             self.logger.error("fatal problem for exposure, skipping")
    915             return False
     911        if "Chip" in self.imageIDs:
     912            if self.populatePspsTablesChip("Chip", 0, 0, results, tables): otaCount = otaCount + 1
     913            if self.skipBatch:
     914                self.logger.error("fatal problem for exposure, skipping")
     915                return False
    916916
    917917        # print totals
     
    926926        self.logger.info("+-------+---------------+---------------+---------------+---------------+---------------+---------------+")
    927927
    928         # if we only have one table export, i.e. FrameMeta, then get out of here
     928        # if we only have one table export, i.e. FrameMeta, then get out of here (skip batch, but do not abort)
    929929        if len(self.tablesToExport) == 1:
    930            
     930            self.skipBatch = True
    931931            self.logger.error("No tables to export")
    932932            return False
Note: See TracChangeset for help on using the changeset viewer.