We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fde432 commit 20e0a54Copy full SHA for 20e0a54
src/DIRAC/RequestManagementSystem/private/RequestTask.py
@@ -403,9 +403,8 @@ def __call__(self):
403
if operation.Status != "Failed":
404
operation.Status = "Failed"
405
self.request.Error = "Job no longer exists"
406
- except Exception as e:
407
- error = str(e)
408
- self.log.exception("hit by exception:", "%s" % error)
+ except Exception as error:
+ self.log.exception("hit by exception:", error)
409
if pluginName:
410
if self.rmsMonitoring:
411
self.rmsMonitoringReporter.addRecord(
0 commit comments