Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/python/WMComponent/RetryManager/PlugIns/PauseAlgo.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@ def isReady(self, job, cooloffType):
msg += str(ex)
logging.warning(msg)

except Exception as ex:
msg = "Unknown error %s\n" % (reportPath)
msg += str(ex)
logging.warning(msg)
retryByTimeOut = True
pauseCount = 1
logging.info("Started force retry three times")


# Here introduces the SquaredAlgo logic :
baseTimeoutDict = self.getAlgoParam(job['jobType'])
baseTimeout = baseTimeoutDict.get(cooloffType.lower(), 10)
Expand Down