yangl opened a new pull request #10551:
URL: https://github.com/apache/pulsar/pull/10551
### Motivation
```
if (conf.isAckReceiptEnabled() &&
Commands.peerSupportsAckReceipt(clientCnx.getRemoteEndpointProtocolVersion())) {
log.warn("Server don't support ack for receipt! " +
"ProtoVersion >=17 support! nowVersion : {}",
clientCnx.getRemoteEndpointProtocolVersion());
}
```
the ack receipt version support logic
`Commands.peerSupportsAckReceipt(clientCnx.getRemoteEndpointProtocolVersion())`
should add not.
### Modifications
add not
`!Commands.peerSupportsAckReceipt(clientCnx.getRemoteEndpointProtocolVersion()`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]