-
Notifications
You must be signed in to change notification settings - Fork 175
Open
Labels
Description
Hello,
As we are filtering for the active assaults, can we include a condition to check toggle config too, like we are doing for watchers
Line 92 in fa9724c
| List<ChaosMonkeyAssault> activeAssaults = assaults.stream().filter(ChaosMonkeyAssault::isActive).collect(Collectors.toList()); |
Reason for asking this is if we want to to run one assault at a time, example run tests with exception assault once check how the app behaves, then run tests with latency assault see how the app behaves without re-starting the app by controlling the assaults through flags.
WtfJoke