GitHub user startjava edited a discussion: ackTimeoutRedeliveryBackoff not support "SubscriptionType.Exclusive"?
### 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! GitHub link: https://github.com/apache/pulsar/discussions/19600 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
