Closed a1ph closed 3 years ago
Hi @a1ph i believe that repo doesn't have manteiner. Do you want to send PR to https://github.com/krojew/cdrs-tokio if apply?
Hi @a1ph i believe that repo doesn't have manteiner. Do you want to send PR to https://github.com/krojew/cdrs-tokio if apply?
@fggarcia That is on my list. I still hope @AlexPikalov may build a bug fix release with this one. It's a pretty weird bug.
@a1ph Thank you for the PR
The
send_frame
function did usewrite
method to send out frame data. The method actually writes just a portion of the data provided (usually first 16K). The rest was not written and got lost. That caused Cassandra node peer send no reply waiting for more frame data, which in turn led tosend_frame
hanging infinitely.The
write_all
method has to be used instead.