Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Always execute post update queue even if there is no handler for the UpdateModelAction
  • Loading branch information
ivy-cst authored Jan 24, 2024
1 parent 2274b81 commit 98530ba
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ protected List<CompletableFuture<Void>> runAction(final Action action) {
.map(response -> ResponseAction.respond(action, response))
.collect(Collectors.toList());
results.addAll(dispatchAll(responses));
if (action instanceof UpdateModelAction) {
results.add(dispatchPostUpdateQueue());
}
}
if (action instanceof UpdateModelAction) {
results.add(dispatchPostUpdateQueue());
}
return results;
}
Expand Down

0 comments on commit 98530ba

Please sign in to comment.