Skip to content

Commit

Permalink
[fix][broker]correct the 'ReplicatorStatsImpl.connected' default value
Browse files Browse the repository at this point in the history
  • Loading branch information
林宇强 committed Oct 28, 2024
1 parent cfa9117 commit 83a3375
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class ReplicatorStatsImpl implements ReplicatorStats {
public long replicationBacklog;

/** is the replication-subscriber up and running to replicate to remote cluster. */
public boolean connected;
public boolean connected = true;

/** Time in seconds from the time a message was produced to the time when it is about to be replicated. */
public long replicationDelayInSeconds;
Expand Down

0 comments on commit 83a3375

Please sign in to comment.