Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4354,6 +4354,7 @@ CompletableFuture<Message<byte[]>> examineMessageAsync(String topic, String init
*
* @param topic
* @param applied
* Whether to return the configuration value of the previous level if the current level's don't set
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this update related to this pull request? If not, please remove from this PR and improve the javadoc in a separate PR.

* @return
* @throws PulsarAdminException
*/
Expand All @@ -4364,6 +4365,7 @@ CompletableFuture<Message<byte[]>> examineMessageAsync(String topic, String init
*
* @param topic
* @param applied
* Whether to return the configuration value of the previous level if the current level's don't set
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this update related to this pull request? If not, please remove from this PR and improve the javadoc in a separate PR.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I corrected the problem and submitted a new Pull Request. #23695

* @return
* @throws PulsarAdminException
*/
Expand Down
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