Rethrow an exception in the ManualFlowTests.testConcurrentRegistration()

The test fails sometimes, but its exception in the executor is lost.
Rethrow `exceptionHappened` to be reported into logs
This commit is contained in:
Artem Bilan
2024-06-24 12:13:03 -04:00
parent a1001d5055
commit a5c449580b

View File

@@ -470,6 +470,7 @@ public class ManualFlowTests {
}
catch (Exception e) {
exceptionHappened.set(true);
throw e;
}
});