Skip to content

Commit

Permalink
[ISSUE #449]🎨Optimize SendMessageProcessor#process_request method (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
universe-dota authored Jun 8, 2024
1 parent 24ce6be commit 2446b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rocketmq-broker/src/processor/send_message_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl<MS: MessageStore + Send> SendMessageProcessor<MS> {
match request_code {
RequestCode::ConsumerSendMsgBack => self.inner.consumer_send_msg_back(&ctx, &request),
_ => {
let mut request_header = parse_request_header(&request).unwrap();
let mut request_header = parse_request_header(&request)?;
let mapping_context = self
.topic_queue_mapping_manager
.build_topic_queue_mapping_context(&request_header, true);
Expand Down

0 comments on commit 2446b63

Please sign in to comment.