Changeset 39008 for trunk/ippToPsps/jython/loader.py
- Timestamp:
- Oct 29, 2015, 5:28:11 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/jython/loader.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/loader.py
r38969 r39008 17 17 from datastore import Datastore 18 18 from batch import Batch 19 from dvo detections import DvoDetections19 from dvo import Dvo 20 20 21 21 from initbatch import InitBatch … … 102 102 except: return ret 103 103 104 self.dvoDetections = DvoDetections(self.logger, self.config, self.skychunk, self.ippToPspsDb, self.scratchDb, self.gpc1Db) 105 # self.dvoDetections = DvoDetections(self.logger, self.config, self.skychunk, self.ippToPspsDb, self.scratchDb) 104 self.dvo = Dvo(self.logger, self.config, self.skychunk, self.ippToPspsDb, self.scratchDb, self.gpc1Db) 106 105 107 106 return ret … … 173 172 if (batchType == "P2" or batchType == "ST" or batchType =="DF" or batchType == "FW"): 174 173 if self.config.resetDvo or not self.ippToPspsDb.isBoxIngested(boxId, self.scratchDb.dbHost): 175 if not self.dvo Detections.nativeIngestDetections(boxId, boxDim):174 if not self.dvo.nativeIngestDetections(boxId, boxDim): 176 175 self.logger.error("Unable to ingest detections with nativeIngest") 177 176 return False
Note:
See TracChangeset
for help on using the changeset viewer.
