This commit is contained in:
Redkale
2020-06-14 01:13:08 +08:00
parent 2a9a713f3e
commit 1549f1feed

View File

@@ -66,7 +66,7 @@ public abstract class MessageClient {
if (this.respConsumerid == null) this.respConsumerid = "consumer-" + this.respTopic;
if (this.consumer == null) {
MessageProcessor processor = (msg, callback) -> {
MessageRespFutureNode node = respNodes.get(msg.getSeqid());
MessageRespFutureNode node = respNodes.remove(msg.getSeqid());
if (node == null) {
messageAgent.logger.log(Level.WARNING, MessageClient.this.getClass().getSimpleName() + " process " + msg + " error not found msgnode");
return;