adamcavendish opened a new issue, #1042: URL: https://github.com/apache/rocketmq-clients/issues/1042
### Before Creating the Bug Report - [x] I found a bug, not just asking a question, which should be created in [GitHub Discussions](https://github.com/apache/rocketmq-clients/discussions). - [x] I have searched the [GitHub Issues](https://github.com/apache/rocketmq-clients/issues) and [GitHub Discussions](https://github.com/apache/rocketmq-clients/discussions) of this repository and believe that this is not a duplicate. - [x] I have confirmed that this bug belongs to the current repository, not other repositories of RocketMQ. ### Programming Language of the Client Rust ### Runtime Platform Environment Not Applicable. ### RocketMQ Version of the Client/Server Git commit ID: 9adc3ce6d8ddc51564eb19e77c873c134b267202 ### Run or Compiler Version OS: MacOS M1 Rust: - rustc 1.88.0 (6b00bc388 2025-06-23) - cargo 1.88.0 (873a06493 2025-05-10) ### Describe the Bug The message receiver handler does not handle status, timestamp, and MessageNotFound correctly. ```text WARN rocketmq::push_consumer: unhandled status message Status { code: Ok, message: "OK" } WARN rocketmq::push_consumer: unhandled delivery timestamp message WARN rocketmq::push_consumer: unhandled status message Status { code: MessageNotFound, message: "no new message" } ``` ### Steps to Reproduce 1. Run a long running consumer, e.g. push consumer example in Rust. 2. Use the producer to send multiple messages and then stop sending more messages. 3. The consumer will show similar warning logs. ### What Did You Expect to See? These messages should be handled correctly. ### What Did You See Instead? The messages I put in the description. ### Additional Context _No response_ -- 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]
