Skip to content

Commit a47eb1f

Browse files
committed
checkstyle
1 parent a613da2 commit a47eb1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pulsar-broker/src/main/java/org/apache/pulsar/broker/service/nonpersistent/NonPersistentReplicator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public NonPersistentReplicator(NonPersistentTopic topic, String localCluster, St
5555
BrokerService brokerService, PulsarClientImpl replicationClient,
5656
PulsarAdmin replicationAdmin) throws PulsarServerException {
5757
super(localCluster, topic, remoteCluster, topic.getName(), topic.getReplicatorPrefix(), brokerService,
58-
replicationClient);
58+
replicationClient, replicationAdmin);
5959
// NonPersistentReplicator does not support limitation so far, so reset pending queue size to the default value.
6060
producerBuilder.maxPendingMessages(1000);
6161
producerBuilder.blockIfQueueFull(false);

pulsar-broker/src/test/java/org/apache/pulsar/broker/service/OneWayReplicatorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1902,7 +1902,7 @@ public void testReplicatorCreateTopic(boolean isPartitioned) throws Exception {
19021902
Awaitility.await().untilAsserted(() -> {
19031903
if (isPartitioned){
19041904
assertThat(admin2.topics().getPartitionedTopicList(ns)).contains(tp);
1905-
}else {
1905+
} else {
19061906
assertThat(admin2.topics().getList(ns)).contains(tp);
19071907
}
19081908
});

0 commit comments

Comments
 (0)