Updates the math and interop samples to use the fully-qualified method name.

This bring the ruby GRPC up-to-date with the changes in []
TESTED: math client access math server OK, similarly the passing interop tests continue to pass
	Change on 2015/01/08 by temiola <temiola@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83527704
pull/1/merge
temiola 10 years ago committed by Tim Emiola
parent 5417edab2a
commit 8232204a36
  1. 1
      src/ruby/bin/interop/test/cpp/interop/test_services.rb
  2. 1
      src/ruby/bin/math_services.rb

@ -44,6 +44,7 @@ module Grpc
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode
self.service_name = 'grpc.testing.TestService'
rpc :EmptyCall, Empty, Empty
rpc :UnaryCall, SimpleRequest, SimpleResponse

@ -43,6 +43,7 @@ module Math
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode
self.service_name = 'math.Math'
rpc :Div, DivArgs, DivReply
rpc :DivMany, stream(DivArgs), stream(DivReply)

Loading…
Cancel
Save