aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end/fixtures/h2_full.c
diff options
context:
space:
mode:
authorGravatar jiangtaoli2016 <jiangtao@google.com>2017-04-15 10:20:51 -0700
committerGravatar jiangtaoli2016 <jiangtao@google.com>2017-04-15 10:20:51 -0700
commite223a6a042b3123a2aee25ec0d3fe42ffd0c43e2 (patch)
tree041120a077b83bae9f461f8e62dac5b531babaa1 /test/core/end2end/fixtures/h2_full.c
parentc953b62d396d6168507520d837550f6b12d7e729 (diff)
parent644e05e79ba04fb0f424cbb8dffce6c3cd3913ec (diff)
Merge branch 'master' into new_tsi
Diffstat (limited to 'test/core/end2end/fixtures/h2_full.c')
-rw-r--r--test/core/end2end/fixtures/h2_full.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/core/end2end/fixtures/h2_full.c b/test/core/end2end/fixtures/h2_full.c
index 49c62b3429..f18d314c1f 100644
--- a/test/core/end2end/fixtures/h2_full.c
+++ b/test/core/end2end/fixtures/h2_full.c
@@ -42,9 +42,9 @@
#include <grpc/support/thd.h>
#include <grpc/support/useful.h>
#include "src/core/ext/filters/client_channel/client_channel.h"
+#include "src/core/ext/filters/http/server/http_server_filter.h"
#include "src/core/ext/transport/chttp2/transport/chttp2_transport.h"
#include "src/core/lib/channel/connected_channel.h"
-#include "src/core/lib/channel/http_server_filter.h"
#include "src/core/lib/surface/channel.h"
#include "src/core/lib/surface/server.h"
#include "test/core/util/port.h"
@@ -64,7 +64,8 @@ static grpc_end2end_test_fixture chttp2_create_fixture_fullstack(
gpr_join_host_port(&ffd->localaddr, "localhost", port);
f.fixture_data = ffd;
- f.cq = grpc_completion_queue_create(NULL);
+ f.cq = grpc_completion_queue_create_for_next(NULL);
+ f.shutdown_cq = grpc_completion_queue_create_for_pluck(NULL);
return f;
}