- Timestamp:
- Aug 12, 2014, 3:27:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20140717/ippToPsps/jython/ipptopsps.py
r37133 r37239 55 55 raise 56 56 57 print "check client status"58 57 self.checkClientStatus() 59 58 … … 143 142 def checkClientStatus(self): 144 143 145 print "updateClient (add this process to client table)"146 144 self.ippToPspsDb.updateClient(self.config.programName, self.HOST, self.PID) 147 145 148 print "check if isKilled (has someone killed me?)"149 146 if self.ippToPspsDb.isKilled(self.HOST, self.PID): 150 147 self.exitProgram("killed via Db") … … 152 149 # this loop pauses the process if we have no skychunk or we have set it to pause 153 150 firstTimeIn = True 154 print "refreshSkychunk"155 151 while not self.refreshSkychunk() or self.ippToPspsDb.isPaused(self.HOST, self.PID): 156 157 print "looping in ipptopsps"158 159 152 self.ippToPspsDb.updateClient(self.config.programName, self.HOST, self.PID) 160 153 if self.ippToPspsDb.isKilled(self.HOST, self.PID): … … 163 156 firstTimeIn = False 164 157 time.sleep(self.PAUSEPERIOD) 165 166 print "DONE looping in ipptopsps"167 158 168 159 '''
Note:
See TracChangeset
for help on using the changeset viewer.
