Skip to content

Commit

Permalink
[ISSUE apache#7812] Remove reachable flag in brokers' available judge…
Browse files Browse the repository at this point in the history
…ment.
  • Loading branch information
GenerousMan authored Feb 5, 2024
1 parent 702bbd2 commit d9526e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public void setCheckStamp(long checkStamp) {
}

public boolean isAvailable() {
return reachableFlag && System.currentTimeMillis() >= startTimestamp;
return System.currentTimeMillis() >= startTimestamp;
}

public boolean isReachable() {
Expand Down

0 comments on commit d9526e7

Please sign in to comment.