started re-implementing route reservation

This commit is contained in:
Stephan Richter
2021-03-10 01:21:10 +01:00
parent 966c5340ba
commit 830c1863ad
17 changed files with 284 additions and 291 deletions

View File

@@ -88,7 +88,10 @@ public class ActionList extends Action implements Iterable<Action>{
for (Action action : actions) {
LOG.debug("firing \"{}\"",action);
if (!action.fire(context,cause)) return false;
if (!action.fire(context,cause)) {
LOG.warn("{} failed",action);
return false;
}
}
return true;
}