aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/ext/grpc/rb_grpc.c
diff options
context:
space:
mode:
authorGravatar Ken Payson <kpayson@google.com>2016-05-20 10:29:34 -0700
committerGravatar Ken Payson <kpayson@google.com>2016-06-01 14:27:13 -0700
commitdce1ee6c84058cd74ae4d8994b8bc9251670438e (patch)
treead10511e79cfcf6ca34d25bbcbb3a149bc9c96cc /src/ruby/ext/grpc/rb_grpc.c
parent6eb2380a8fa5188437b912e07ae3a3caf3f223ce (diff)
Fixed ruby fd bug
Diffstat (limited to 'src/ruby/ext/grpc/rb_grpc.c')
-rw-r--r--src/ruby/ext/grpc/rb_grpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ruby/ext/grpc/rb_grpc.c b/src/ruby/ext/grpc/rb_grpc.c
index 06a07ac646..9246893f9f 100644
--- a/src/ruby/ext/grpc/rb_grpc.c
+++ b/src/ruby/ext/grpc/rb_grpc.c
@@ -318,7 +318,7 @@ void Init_grpc_c() {
grpc_rb_mGrpcCore = rb_define_module_under(grpc_rb_mGRPC, "Core");
grpc_rb_sNewServerRpc =
rb_struct_define("NewServerRpc", "method", "host",
- "deadline", "metadata", "call", NULL);
+ "deadline", "metadata", "call", "cq", NULL);
grpc_rb_sStatus =
rb_struct_define("Status", "code", "details", "metadata", NULL);
sym_code = ID2SYM(rb_intern("code"));