This is an automated email from the ASF dual-hosted git repository.
bogong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 53bd7a4 Remove txn add partition info log (#13670)
53bd7a4 is described below
commit 53bd7a44f252812a0ff4c1bc22d0a03e606a4875
Author: lipenghui <[email protected]>
AuthorDate: Mon Jan 10 09:44:47 2022 +0800
Remove txn add partition info log (#13670)
During my test, there are many output logs `handle add partition to txn
finish` for the broker.
### Documentation
Check the box below or label this PR directly (if you have committer
privilege).
---
.../src/main/java/org/apache/pulsar/broker/service/ServerCnx.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
index a7a7c2d..5b4d1f5 100644
---
a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
+++
b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
@@ -2348,7 +2348,6 @@ public class ServerCnx extends PulsarHandler implements
TransportCnx {
}
ctx.writeAndFlush(Commands.newAddSubscriptionToTxnResponse(requestId,
txnID.getLeastSigBits(),
txnID.getMostSigBits()));
- log.info("handle add partition to txn finish.");
} else {
ex = handleTxnException(ex,
BaseCommand.Type.ADD_SUBSCRIPTION_TO_TXN.name(), requestId);