mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 01:20:39 +00:00
With the current listen() -> future<connection> interface, if a new connection is established before the connection handler is able to re-register for the port, we have to drop the connection. Fix by adding a queue for accepted connections, and switching to the more standard listen() -> accept() -> future<connection> model.