diff options
author | Craig Tiller <ctiller@google.com> | 2015-07-31 17:01:47 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-07-31 17:01:47 -0700 |
commit | 99e61645ce348df59c549011d5111cd11ed1c291 (patch) | |
tree | 1430bb509e343af5983899f6b0808a018222440b /src/ruby | |
parent | 3e7c6a701c8aea58cacb023ffa8b3c75e7e67390 (diff) |
Update wrappers, tests to new create_call()
Diffstat (limited to 'src/ruby')
-rw-r--r-- | src/ruby/ext/grpc/rb_channel.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ruby/ext/grpc/rb_channel.c b/src/ruby/ext/grpc/rb_channel.c index 0cb6fa2f80..506e7cdee7 100644 --- a/src/ruby/ext/grpc/rb_channel.c +++ b/src/ruby/ext/grpc/rb_channel.c @@ -212,10 +212,10 @@ static VALUE grpc_rb_channel_create_call(VALUE self, VALUE cqueue, VALUE method, return Qnil; } - call = - grpc_channel_create_call(ch, cq, method_chars, host_chars, - grpc_rb_time_timeval(deadline, - /* absolute time */ 0)); + call = grpc_channel_create_call(ch, NULL, GRPC_INHERIT_DEFAULTS, cq, + method_chars, host_chars, + grpc_rb_time_timeval(deadline, + /* absolute time */ 0)); if (call == NULL) { rb_raise(rb_eRuntimeError, "cannot create call with method %s", method_chars); |