diff options
author | Michael Lumish <mlumish@google.com> | 2017-03-24 13:51:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 13:51:47 -0700 |
commit | cbe5036bb74d4e141f79b052e1325dd550867969 (patch) | |
tree | 0f19c7e63478b7d37e44c670113801ae9cd4e2b5 /test/core/surface | |
parent | ac7f90da26522965c420623a7c008c2eede464f3 (diff) | |
parent | ac4a7283ee77bfe5118a061a62930019ff090e37 (diff) |
Merge branch 'master' into node_protobuf_js_6_upgrade
Diffstat (limited to 'test/core/surface')
-rw-r--r-- | test/core/surface/concurrent_connectivity_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/core/surface/concurrent_connectivity_test.c b/test/core/surface/concurrent_connectivity_test.c index ff927385d4..2f7c3dfb85 100644 --- a/test/core/surface/concurrent_connectivity_test.c +++ b/test/core/surface/concurrent_connectivity_test.c @@ -109,7 +109,8 @@ static void on_connect(grpc_exec_ctx *exec_ctx, void *vargs, grpc_endpoint *tcp, grpc_tcp_server_acceptor *acceptor) { gpr_free(acceptor); struct server_thread_args *args = (struct server_thread_args *)vargs; - grpc_endpoint_shutdown(exec_ctx, tcp, GRPC_ERROR_CREATE("Connected")); + grpc_endpoint_shutdown(exec_ctx, tcp, + GRPC_ERROR_CREATE_FROM_STATIC_STRING("Connected")); grpc_endpoint_destroy(exec_ctx, tcp); GRPC_LOG_IF_ERROR("pollset_kick", grpc_pollset_kick(args->pollset, NULL)); } |