We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在高并发情况下,其他线程发送innerMsg时会生成新的messageId,但是发送PubAck需要使用源messageId,因此该地方需要使用变量保存一下源messageId,修改如下:
int originMessageId = innerMsg.getMsgId(); processMessage(innerMsg); log.debug("[PubMessage] -> Process qos1 message,clientId={}",innerMsg.getClientId()); MqttPubAckMessage pubAckMessage = MessageUtil.getPubAckMessage(originMessageId);
The text was updated successfully, but these errors were encountered:
你好,3.0版本正在开发中,会修复此问题
Sorry, something went wrong.
No branches or pull requests
在高并发情况下,其他线程发送innerMsg时会生成新的messageId,但是发送PubAck需要使用源messageId,因此该地方需要使用变量保存一下源messageId,修改如下:
The text was updated successfully, but these errors were encountered: