mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 01:20:39 +00:00
transport: cql_server::connection::process(): return the missing 'return'
Return the 'return' statement removed by mistake in
commit 707f3b25e3.
Signed-off-by: Vlad Zolotarov <vladz@cloudius-systems.com>
This commit is contained in:
committed by
Avi Kivity
parent
707f3b25e3
commit
6819ee641b
@@ -153,7 +153,7 @@ public:
|
||||
return do_until([this] { return _read_buf.eof(); }, [this] { return process_request(); })
|
||||
.finally([this] {
|
||||
return _pending_requests_gate.close().then([this] {
|
||||
std::move(_ready_to_respond);
|
||||
return std::move(_ready_to_respond);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user