Merge pull request #23419 from miyucy/patch-1

Fix ruby 2.7 keyword arguments deprecation
pull/23440/head
apolcyn 4 years ago committed by GitHub
commit 8d4db0d160
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/ruby/lib/grpc/generic/interceptors.rb

@ -172,7 +172,7 @@ module GRPC
i = @interceptors.pop
return yield unless i
i.send(type, args) do
i.send(type, **args) do
if @interceptors.any?
intercept!(type, args) do
yield

Loading…
Cancel
Save