Skip to content
Snippets Groups Projects
Commit ef558b32 authored by David G. Quintas's avatar David G. Quintas
Browse files

Merge pull request #2284 from ctiller/oops-i-split-it-again

Remove errant assert
parents a840de43 0e640a8c
No related branches found
No related tags found
No related merge requests found
...@@ -109,9 +109,6 @@ void grpc_chttp2_publish_reads( ...@@ -109,9 +109,6 @@ void grpc_chttp2_publish_reads(
transport_parsing->incoming_stream_id; transport_parsing->incoming_stream_id;
} }
/* TODO(ctiller): re-implement */
GPR_ASSERT(transport_parsing->initial_window_update == 0);
/* copy parsing qbuf to global qbuf */ /* copy parsing qbuf to global qbuf */
gpr_slice_buffer_move_into(&transport_parsing->qbuf, &transport_global->qbuf); gpr_slice_buffer_move_into(&transport_parsing->qbuf, &transport_global->qbuf);
......
...@@ -914,6 +914,7 @@ static void recv_data(void *tp, gpr_slice *slices, size_t nslices, ...@@ -914,6 +914,7 @@ static void recv_data(void *tp, gpr_slice *slices, size_t nslices,
if (t->parsing.initial_window_update != 0) { if (t->parsing.initial_window_update != 0) {
grpc_chttp2_stream_map_for_each(&t->parsing_stream_map, grpc_chttp2_stream_map_for_each(&t->parsing_stream_map,
update_global_window, t); update_global_window, t);
t->parsing.initial_window_update = 0;
} }
/* handle higher level things */ /* handle higher level things */
grpc_chttp2_publish_reads(&t->global, &t->parsing); grpc_chttp2_publish_reads(&t->global, &t->parsing);
......
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