Changeset 36697 for trunk/ippToPsps/jython/loader.py
- Timestamp:
- Apr 25, 2014, 3:40:27 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/jython/loader.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/loader.py
r35417 r36697 182 182 # XXXX EAM : in parallel model, this should happen for all P2 & Stack batches 183 183 # 184 if (batchType == 'P2' or batchType == 'ST' ) and smfsPerGB > 30:184 if (batchType == 'P2' or batchType == 'ST' or batchType == 'DF' or batchType == 'FW') and smfsPerGB > 30: 185 185 if not self.dvoDetections.sync(): 186 186 self.logger.errorPair("Could not sync DVO with MySQL", "skipping") … … 285 285 useFullTables) 286 286 287 elif batchType == "DF": 288 batch = DiffBatch(self.logger, 289 self.config, 290 self.skychunk, 291 self.gpc1Db, 292 self.ippToPspsDb, 293 self.scratchDb, 294 id, 295 batchID, 296 useFullTables) 297 298 elif batchType == "DO": 299 batch = DiffObjectBatch(self.logger, 300 self.config, 301 self.skychunk, 302 self.gpc1Db, 303 self.ippToPspsDb, 304 self.scratchDb, 305 id, 306 batchID, 307 useFullTables) 308 309 elif batchType == "FW": 310 batch = ForcedWarpBatch(self.logger, 311 self.config, 312 self.skychunk, 313 self.gpc1Db, 314 self.ippToPspsDb, 315 self.scratchDb, 316 id, 317 batchID, 318 useFullTables) 319 320 elif batchType == "FO": 321 batch = ForcedObjectBatch(self.logger, 322 self.config, 323 self.skychunk, 324 self.gpc1Db, 325 self.ippToPspsDb, 326 self.scratchDb, 327 id, 328 batchID, 329 useFullTables) 330 287 331 batch.run() 288 332
Note:
See TracChangeset
for help on using the changeset viewer.
