aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ruby/bin/interop/test/cpp/interop/test_services.rb1
-rw-r--r--src/ruby/bin/math_services.rb1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/ruby/bin/interop/test/cpp/interop/test_services.rb b/src/ruby/bin/interop/test/cpp/interop/test_services.rb
index 464d5e24f6..17b5461d3e 100644
--- a/src/ruby/bin/interop/test/cpp/interop/test_services.rb
+++ b/src/ruby/bin/interop/test/cpp/interop/test_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
diff --git a/src/ruby/bin/math_services.rb b/src/ruby/bin/math_services.rb
index 7e056025cf..f6ca6fe060 100644
--- a/src/ruby/bin/math_services.rb
+++ b/src/ruby/bin/math_services.rb
@@ -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)