Skip to content

Commit

Permalink
fix compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed May 4, 2022
1 parent 9cffad9 commit fcc24c6
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,14 @@ private void performBuilderHealthCheck() {
}
executionLayerChannel
.builderStatus()
.thenAccept(
.finish(
status -> {
if (status.hasFailed()) {
LOG.error(
"The execution builder has failed health check: {}", status.getErrorMessage());
}
});
},
throwable ->
LOG.error("Error while performing the execution builder health check", throwable));
}
}

0 comments on commit fcc24c6

Please sign in to comment.