diff options
author | 2016-10-26 23:34:16 +0200 | |
---|---|---|
committer | 2016-10-26 23:34:16 +0200 | |
commit | 6ab40a5fd395ec0db6231a1c1ffd4dd468b61bd0 (patch) | |
tree | b5104f137d8b4f4b54318b7ecf12c037abac62da /src/ruby | |
parent | 89e23643538cd632e3f0e78671795ab42bf3371c (diff) | |
parent | 832b685740f52dd1ac04fe7cdda4cc5ad1e7fa92 (diff) |
Merge branch 'master' of https://github.com/grpc/grpc into bazel-take-2
Diffstat (limited to 'src/ruby')
-rw-r--r-- | src/ruby/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ruby/README.md b/src/ruby/README.md index f476fe72be..266d6b2c16 100644 --- a/src/ruby/README.md +++ b/src/ruby/README.md @@ -59,7 +59,7 @@ Directory structure is the layout for [ruby extensions][] - bin: example gRPC clients and servers, e.g, ```ruby - stub = Math::Math::Stub.new('my.test.math.server.com:8080') + stub = Math::Math::Stub.new('my.test.math.server.com:8080', :this_channel_is_insecure) req = Math::DivArgs.new(dividend: 7, divisor: 3) GRPC.logger.info("div(7/3): req=#{req.inspect}") resp = stub.div(req) |