mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 03:20:37 +00:00
Digest resolver is broken in a way that prevents read completion to be reported if data arrives after enough digests for cl were already received. This happens because the code tried to save on a state and used _cl_responses as an indicator that completion was reported already, but this is incorrect since there can be enough responses for cl, but no data yet. Fix by introducing special state to track completion reporting. Fixes #331