Skip to content

Commit

Permalink
remove BrokerService.transactionTimer
Browse files Browse the repository at this point in the history
  • Loading branch information
poorbarcode committed Jul 22, 2022
1 parent ca52cde commit d74be59
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,6 @@ public class BrokerService implements Closeable {
@Getter
private final ScheduledExecutorService backlogQuotaChecker;

@Getter
private final ScheduledExecutorService transactionTimer;

protected final AtomicReference<Semaphore> lookupRequestSemaphore;
protected final AtomicReference<Semaphore> topicLoadRequestSemaphore;

Expand Down Expand Up @@ -347,8 +344,6 @@ public BrokerService(PulsarService pulsar, EventLoopGroup eventLoopGroup) throws
this.backlogQuotaManager = new BacklogQuotaManager(pulsar);
this.backlogQuotaChecker = Executors
.newSingleThreadScheduledExecutor(new DefaultThreadFactory("pulsar-backlog-quota-checker"));
this.transactionTimer = Executors
.newSingleThreadScheduledExecutor(new DefaultThreadFactory("pulsar-backlog-quota-checker"));
this.authenticationService = new AuthenticationService(pulsar.getConfiguration());
this.blockedDispatchers =
ConcurrentOpenHashSet.<PersistentDispatcherMultipleConsumers>newBuilder().build();
Expand Down

0 comments on commit d74be59

Please sign in to comment.