mirror of
https://github.com/corda/corda.git
synced 2025-04-01 16:41:16 +00:00
When a flow fails to retry, it should be kept in for overnight observation and aborted. In the future, it might be possible to retry flows again that failed during their retry, but for now keeping for observation and aborting is satisfactory. * CORDA-3194 Remove hospitalised flows from `HospitalisingInterceptor` Small refactor to remove some of the hospital logic out of the `HospitalisingInterceptor` and into the `StaffedFlowHospital`. Add some comments to help clarify the purpose of the two maps inside of the hospital. * CORDA-3194 When a flow fails to retry force it into observation When a flow fails to retry, it should be kept in for overnight observation and aborted. In the future, it might be possible to retry flows again that failed during their retry, but for now keeping for observation and aborting is satisfactory. * CORDA-3194 Test for database commit failure when retrying a flow Failing during the database commit failure that occurs after the retry flow action does not stop the flow from actually retrying. This test confirms this functionality. The retried flow gets scheduled as part of the retry action. The failure in the commit action does not prevent this since it has already been scheduled.