diff options
author | murgatroid99 <mlumish@google.com> | 2016-01-05 14:10:55 -0800 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-01-05 14:10:55 -0800 |
commit | a4d3d2c76bd66c8e4e6e0f379594a9d3dd5a4464 (patch) | |
tree | 55bc831bb6cfd6fcf385962dfc3db9643aa219f4 /src | |
parent | 296ae72581f17438e9355d4862c3ad5c66d49807 (diff) |
Fix typo in method call
Diffstat (limited to 'src')
-rw-r--r-- | src/ruby/lib/grpc/generic/client_stub.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ruby/lib/grpc/generic/client_stub.rb b/src/ruby/lib/grpc/generic/client_stub.rb index 32da7a2b0f..98e83a8396 100644 --- a/src/ruby/lib/grpc/generic/client_stub.rb +++ b/src/ruby/lib/grpc/generic/client_stub.rb @@ -464,7 +464,7 @@ module GRPC method, nil, # host use nil, deadline) - call.set_credentials credentials unless credentials.nil? + call.set_credentials! credentials unless credentials.nil? ActiveCall.new(call, @queue, marshal, unmarshal, deadline, started: false) end end |