Changeset 33680 for trunk/ippToPsps
- Timestamp:
- Apr 3, 2012, 4:36:52 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/jython/pollOdm.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/pollOdm.py
r33555 r33680 42 42 else: self.stages = [self.STAGE] 43 43 44 if self.BATCHTYPE == "all": self.batchTypes = ['P2', 'ST' ]44 if self.BATCHTYPE == "all": self.batchTypes = ['P2', 'ST', 'OB'] 45 45 else: self.batchTypes = [self.BATCHTYPE] 46 46 … … 68 68 69 69 if stage == "unloaded": 70 ids = self.ippToPspsDb.getUnloadedBatchIDs( self.config.epoch, self.config.dvoLabel,batchType)70 ids = self.ippToPspsDb.getUnloadedBatchIDs(batchType) 71 71 elif stage == "unmergeworthy": 72 ids = self.ippToPspsDb.getUnmergeWorthyBatchIDs( self.config.epoch, self.config.dvoLabel,batchType)72 ids = self.ippToPspsDb.getUnmergeWorthyBatchIDs(batchType) 73 73 elif stage == "unmerged": 74 ids = self.ippToPspsDb.getUnmergedBatchIDs( self.config.epoch, self.config.dvoLabel,batchType)74 ids = self.ippToPspsDb.getUnmergedBatchIDs(batchType) 75 75 76 76 self.logger.infoTitle("Checking %d %s %s batches" % (len(ids), stage, batchType)) … … 121 121 ''' 122 122 def printUsage(self): 123 super(PollOdm, self).printUsage("<P2|ST| all> <unloaded|unmergeworthy|unmerged|all> [hours]")123 super(PollOdm, self).printUsage("<P2|ST|OB|all> <unloaded|unmergeworthy|unmerged|all> [hours]") 124 124 125 125
Note:
See TracChangeset
for help on using the changeset viewer.
