Skip to content

Commit

Permalink
Merge pull request #10894 from amaltaro/fix-10893
Browse files Browse the repository at this point in the history
Remove check of RSE dump root_failed attr in MSUnmerged
  • Loading branch information
amaltaro authored Nov 8, 2021
2 parents 40823fe + 3eaf4c5 commit 34deeaf
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/python/WMCore/MicroService/MSUnmerged/MSUnmerged.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,8 +403,6 @@ def consRecordAge(self, rse):

isConsDone = self.rseConsStats[rseName]['status'] == 'done'
isConsNewer = self.rseConsStats[rseName]['end_time'] > self.rseTimestamps[rseName]['prevStartTime']
isRootFailed = self.rseConsStats[rseName]['root_failed']

if not isConsNewer:
msg = "RSE: %s With old consistency record in Rucio Consistency Monitor. " % rseName
msg += "Skipping it in the current run."
Expand All @@ -415,11 +413,6 @@ def consRecordAge(self, rse):
msg += "Skipping it in the current run."
self.logger.warning(msg)
raise MSUnmergedPlineExit(msg)
if isRootFailed:
msg = "RSE: %s With failed root in Rucio Consistency Monitor. " % rseName
msg += "Skipping it in the current run."
self.logger.warning(msg)
raise MSUnmergedPlineExit(msg)

return rse

Expand Down

0 comments on commit 34deeaf

Please sign in to comment.