BewareMyPower commented on PR #24745: URL: https://github.com/apache/pulsar/pull/24745#issuecomment-3310928916
Technically, there are many references in Pulsar that use `xxxAsync` without the executor argument. We have to pass a dedicated executor in all places. This will change the code base a lot, which is redundant once we upgraded to a newer JDK that includes that fix. To prevent this use cases, we also have to disallow any `CompletableFuture`'s `Async` method without specifying the executor argument. It's hard to add this limit for a rarely happened case which will be fixed soon. It's a JDK standard API that should be widely used. Many projects should be affected rather than Pulsar itself. So I guess it's why @lhotari asked `what is "long time" here? days? weeks?` before. -- 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]
