add missing exception in future

This commit is contained in:
Jonathan Shook 2020-07-16 11:50:43 -05:00
parent 7a23d910b6
commit a05c95d26f
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,5 @@
- b53c9c6e (HEAD -> main) fix for error handler NPE
- 7a23d910 (HEAD -> main) error handling improvements release
- b53c9c6e fix for error handler NPE
- 754ed25e general improvements release
- 16e4309e add scope controls to jmx driver
- c81c5187 avoid repeating initial error message

View File

@ -218,6 +218,7 @@ public class Scenario implements Callable<ScenarioResult> {
System.out.flush();
} catch (Exception e) {
ScenarioErrorHandler.handle(script,e,wantsStackTraces);
throw new RuntimeException(e);
} finally {
scenarioController.forceStopScenario(5000);
System.out.flush();