Merge pull request #23419 from miyucy/patch-1

Fix ruby 2.7 keyword arguments deprecation
This commit is contained in:
apolcyn 2020-07-09 14:51:43 -07:00 committed by GitHub
commit 8d4db0d160
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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