startjava opened a new issue, #19598: URL: https://github.com/apache/pulsar/issues/19598
### Search before asking - [X] I searched in the [issues](https://github.com/apache/pulsar/issues) and found nothing similar. ### Version @Bean public Consumer createPulsarConsumer_myTopic2() throws PulsarClientException { Consumer consumer = pulsarClient.newConsumer().topic(myTopic2).subscriptionType(SubscriptionType.Exclusive).subscriptionName(myTopic2_subscriptionName).messageListener(myMessageListener2).ackTimeout(10, TimeUnit.SECONDS) .ackTimeoutRedeliveryBackoff(MultiplierRedeliveryBackoff.builder() .minDelayMs(1000) .maxDelayMs(60 * 1000) .multiplier(2) .build()).subscribe(); return consumer; } RedeliveryBackoff time alway 12s,But use Shared is OK ! it maybe bug ? ### Minimal reproduce step ? ### What did you expect to see? ? ### What did you see instead? ? ### Anything else? _No response_ ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- 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]
