Skip to content

Commit

Permalink
Wordsmithing h/t @ehoner
Browse files Browse the repository at this point in the history
  • Loading branch information
ryannedolan committed Jun 29, 2023
1 parent ebec1be commit ac3fa45
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public Result reconcile(Request request) {
log.info("Deploying pipeline for {}/{}...", kind, name);

boolean deployed = status.getResources().stream()
.map(x -> apply(x, object)).allMatch(x -> x);
.allMatch(x -> apply(x, object));

if (deployed) {
status.setReady(false);
Expand All @@ -111,7 +111,7 @@ public Result reconcile(Request request) {
log.info("Checking status of pipeline for {}/{}...", kind, name);

boolean ready = status.getResources().stream()
.map(x -> checkStatus(x)).allMatch(x -> x);
.allMatch(x -> checkStatus(x));

if (ready) {
status.setReady(true);
Expand Down

0 comments on commit ac3fa45

Please sign in to comment.