Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
Signed-off-by: xufei <xufeixw@mail.ustc.edu.cn>
  • Loading branch information
windtalker committed Sep 8, 2022
1 parent 3cac4ab commit 1910ac1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbms/src/Flash/Mpp/GRPCReceiverContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ ExchangeRecvRequest GRPCReceiverContext::makeRequest(int index) const
req.send_task_id = sender_task->task_id();
req.recv_task_id = task_meta.task_id();
req.req = std::make_shared<mpp::EstablishMPPConnectionRequest>();
req.req->set_allocated_receiver_meta(new mpp::TaskMeta(task_meta));
req.req->set_allocated_sender_meta(sender_task.release());
req.req->set_allocated_receiver_meta(new mpp::TaskMeta(task_meta)); // NOLINT
req.req->set_allocated_sender_meta(sender_task.release()); // NOLINT
return req;
}

Expand Down

0 comments on commit 1910ac1

Please sign in to comment.