heesung-sn commented on code in PR #18254:
URL: https://github.com/apache/pulsar/pull/18254#discussion_r1010630808
##########
pulsar-common/src/main/java/org/apache/pulsar/common/policies/data/stats/PublisherStatsImpl.java:
##########
@@ -49,8 +49,9 @@ public class PublisherStatsImpl implements PublisherStats {
/** Id of this publisher. */
public long producerId;
- /** Whether partial producer is supported at client. */
- public boolean supportsPartialProducer;
+ /** Whether partial producer is supported at client.
supportsPartialProducer is true always. */
+ @Deprecated
+ public boolean supportsPartialProducer = true;
Review Comment:
The getter of this member var is already exposed to the client interface.
Are we allowed to make a breaking change?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]