wenbingshen opened a new pull request #13655:
URL: https://github.com/apache/pulsar/pull/13655
Fixes #13654
### Modifications
When the initialization of `PendingAckHandleImpl` fails,
`pendingAckHandleCompletableFuture` will not be exception or complete, then
`org.apache.pulsar.broker.service.persistent.PersistentSubscription#addConsumer`
will not return any response to the client.
```
public CompletableFuture<Void> addConsumer(Consumer consumer) {
return pendingAckHandle.pendingAckHandleFuture().thenCompose(future
-> ...)
}
```
--
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]