873310466 opened a new issue #3812: URL: https://github.com/apache/rocketmq/issues/3812
Location: src/main/java/org/apache/rocketmq/client/impl/producer/DefaultMQProducerImpl.java #sendKernelImpl Line760  The implementation of parseBoolean is as follows. It internally judge whether it's null. ```java public static boolean parseBoolean(String s) { return ((s != null) && s.equalsIgnoreCase("true")); } ``` -- 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]
