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:
Vlad Zolotarov
2015-08-04 13:37:17 +03:00
committed by Avi Kivity
parent 707f3b25e3
commit 6819ee641b

View File

@@ -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);
});
});
}