devinbost commented on issue #6332: (Flaky-test) Intermittent failure of ProxyParserTest.testRegexSubscription URL: https://github.com/apache/pulsar/issues/6332#issuecomment-588009431 I learned from @jiazhai that PulsarDecoder is an interface that should not be getting called directly. He pointed out that all interactions should be between `ServerCnx` and `ClientCnx` and that `ServerCnx` implements `PulsarDecoder` indirectly like this: ``` public class ServerCnx extends PulsarHandler public abstract class PulsarHandler extends PulsarDecoder { ``` So, something is causing the method to get called on the interface directly instead of the correct implementing class. Perhaps there's a type conversion issue happening or something.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
