You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2019/09/17 03:20:26 UTC

[GitHub] [rocketmq] wongtp commented on issue #1453: Tags null while the CommitLog#handleHA()

wongtp commented on issue #1453: Tags null while the CommitLog#handleHA()
URL: https://github.com/apache/rocketmq/issues/1453#issuecomment-532041660
 
 
   @duhenglucky Thank‘s your answer,It seems the ‘TAGES’ of the properties aways not set in the process but use in the  method handleHA() 
   
   SendMessageProcessor.sendBatchMessage()
   ```Java
           MessageExtBatch messageExtBatch = new MessageExtBatch();
           messageExtBatch.setTopic(requestHeader.getTopic());
           messageExtBatch.setQueueId(queueIdInt);
   
           int sysFlag = requestHeader.getSysFlag();
           if (TopicFilterType.MULTI_TAG == topicConfig.getTopicFilterType()) {
               sysFlag |= MessageSysFlag.MULTI_TAGS_FLAG;
           }
           messageExtBatch.setSysFlag(sysFlag);
   
           messageExtBatch.setFlag(requestHeader.getFlag());
           MessageAccessor.setProperties(messageExtBatch, 
           MessageDecoder.string2messageProperties(requestHeader.getProperties()));
           messageExtBatch.setBody(request.getBody());
           messageExtBatch.setBornTimestamp(requestHeader.getBornTimestamp());
           messageExtBatch.setBornHost(ctx.channel().remoteAddress());
           messageExtBatch.setStoreHost(this.getStoreHost());
           messageExtBatch.setReconsumeTimes(requestHeader.getReconsumeTimes() == null ? 0 : requestHeader.getReconsumeTimes());
   
           PutMessageResult putMessageResult = this.brokerController.getMessageStore().putMessages(messageExtBatch);
   
           return handlePutMessageResult(putMessageResult, response, request, messageExtBatch, responseHeader, sendMessageContext, ctx, queueIdInt);
   
   ```

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services