Description
The fix for KUDU-2065 included a footer to RPC messages. The footer is appended during the beginning of the transmission of the outbound transfer for an outbound call. However, the check for the beginning of transmission for an outbound call isn't quite correct as it's possible for an outbound transfer to not send anything in Transfer::SendBuffer().
// Transfer for outbound call must call StartCallTransfer() before transmission can // begin to append footer to the payload if the remote supports it. if (!transfer->TransferStarted() && transfer->is_for_outbound_call() && !StartCallTransfer(transfer)) { OutboundQueuePopFront(); continue; }
Attachments
Issue Links
- is related to
-
IMPALA-2567 KRPC milestone 1
- Resolved