This is an automated email from the ASF dual-hosted git repository. penghui pushed a commit to branch branch-2.9 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit ad043fca44450fd8b8b13f27fc3460fc2442fa1a 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). (cherry picked from commit 53bd7a44f252812a0ff4c1bc22d0a03e606a4875) --- .../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 c4ab0e2..583ad3c 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 @@ -2335,7 +2335,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);
