Skip to content

Commit

Permalink
fix(titus): Pass nextCommand if front50 app doesnt exist (#3966)
Browse files Browse the repository at this point in the history
  • Loading branch information
robzienert committed Aug 20, 2019
1 parent 112b64d commit c5c268e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public Result apply(@NotNull LoadFront50AppCommand command, @NotNull Saga saga)
log.error("Failed to load front50 application attributes for {}", command.getAppName(), e);
if (command.isAllowMissing()) {
// It's ok to not load the front50 application
return new Result();
return new Result(command.nextCommand, Collections.emptyList());
}
throw new SystemException(
format("Failed to load front50 application: %s", command.getAppName()), e);
Expand Down

0 comments on commit c5c268e

Please sign in to comment.