Skip to content
Snippets Groups Projects
Commit c21477b7 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Merge branch 'stable'

parents 9545c7e5 33ba1dff
No related branches found
No related tags found
No related merge requests found
......@@ -621,6 +621,12 @@ iproto_session_on_input(struct ev_io *watcher,
session->parse_size += nrd;
/* Enqueue all requests which are fully read up. */
iproto_enqueue_batch(session, in, fd);
/*
* Keep reading input, as long as the socket
* supplies data.
*/
if (!ev_is_active(&session->input))
ev_feed_event(&session->input, EV_READ);
} @catch (tnt_Exception *e) {
[e log];
iproto_session_shutdown(session);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment