Skip to content

Commit

Permalink
Address code review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Andriy Redko <[email protected]>
  • Loading branch information
reta committed Feb 13, 2024
1 parent 23defeb commit 636440a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ private void setCurrentPhase(SearchPhase phase) {
// onPhaseStart / onPhaseFailure / OnPhaseDone callbacks and the wrapping SearchPhase is being abandoned
// (fe, has no onPhaseEnd callbacks called ever). To fix that, we would not send any notifications for this
// phase.
currentPhaseHasLifecycle = !(phase instanceof WrappingSearchAsyncActionPhase);
currentPhaseHasLifecycle = ((phase instanceof WrappingSearchAsyncActionPhase) == false);
}

@Override
Expand Down

0 comments on commit 636440a

Please sign in to comment.