grpc 1.7.1-universal-darwin → 1.7.2-universal-darwin

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d24e6215df07b1fc0c33a05ef41ab509e0262127
4
- data.tar.gz: fc7d0d6975bf6b0dfd3184b94efe3a9ce971356c
3
+ metadata.gz: b59fdc955ff127acbcb0a92df76fb7dba25d5a18
4
+ data.tar.gz: eb559a9c81b5da19009aab60311ffc831fafb8c0
5
5
  SHA512:
6
- metadata.gz: 5408fbe6e12c807d18de89c9e4dc4c5177b3e5ca9970888e931d3f3db26710d75de6f71d7b9a2850e719768ff1fe7278e8bc46ce32f8a59002aeaabde5a04293
7
- data.tar.gz: d98f6bdb8498b4292e086f1a404512d000f2bd01b0b0e7affaa1670c2727dc905fb76021b1416c54d7e6e6f4901aaddf7413c7d4789a52281b01d9c498bb0d4e
6
+ metadata.gz: e91079c012daec093c104424353a693f8ec0ef3e9f81492aaadce6646dd66096db8f90f50edf61966da6d16a476ce077cc2cc87e130dca90606fb151a8fbbef8
7
+ data.tar.gz: 55968cadb4167685c164d61b6b8c3e37d3349ebbc4bc995902e64ec81fac21ab74a705ae7e44cb1d66ce191b0903dc22b71b17dc9eed60090d82c8db97c705c8
@@ -41,7 +41,7 @@ module GRPC
41
41
  # @param [Method] method
42
42
  # @param [Hash] metadata
43
43
  #
44
- def request_response(request:, call:, method:, metadata:)
44
+ def request_response(request: nil, call: nil, method: nil, metadata: nil)
45
45
  GRPC.logger.debug "Intercepting request response method #{method}" \
46
46
  " for request #{request} with call #{call} and metadata: #{metadata}"
47
47
  yield
@@ -55,7 +55,7 @@ module GRPC
55
55
  # @param [Method] method
56
56
  # @param [Hash] metadata
57
57
  #
58
- def client_streamer(requests:, call:, method:, metadata:)
58
+ def client_streamer(requests: nil, call: nil, method: nil, metadata: nil)
59
59
  GRPC.logger.debug "Intercepting client streamer method #{method}" \
60
60
  " for requests #{requests} with call #{call} and metadata: #{metadata}"
61
61
  yield
@@ -69,7 +69,7 @@ module GRPC
69
69
  # @param [Method] method
70
70
  # @param [Hash] metadata
71
71
  #
72
- def server_streamer(request:, call:, method:, metadata:)
72
+ def server_streamer(request: nil, call: nil, method: nil, metadata: nil)
73
73
  GRPC.logger.debug "Intercepting server streamer method #{method}" \
74
74
  " for request #{request} with call #{call} and metadata: #{metadata}"
75
75
  yield
@@ -83,7 +83,7 @@ module GRPC
83
83
  # @param [Method] method
84
84
  # @param [Hash] metadata
85
85
  #
86
- def bidi_streamer(requests:, call:, method:, metadata:)
86
+ def bidi_streamer(requests: nil, call: nil, method: nil, metadata: nil)
87
87
  GRPC.logger.debug "Intercepting bidi streamer method #{method}" \
88
88
  " for requests #{requests} with call #{call} and metadata: #{metadata}"
89
89
  yield
@@ -102,7 +102,7 @@ module GRPC
102
102
  # @param [GRPC::ActiveCall::SingleReqView] call
103
103
  # @param [Method] method
104
104
  #
105
- def request_response(request:, call:, method:)
105
+ def request_response(request: nil, call: nil, method: nil)
106
106
  GRPC.logger.debug "Intercepting request response method #{method}" \
107
107
  " for request #{request} with call #{call}"
108
108
  yield
@@ -114,7 +114,7 @@ module GRPC
114
114
  # @param [GRPC::ActiveCall::MultiReqView] call
115
115
  # @param [Method] method
116
116
  #
117
- def client_streamer(call:, method:)
117
+ def client_streamer(call: nil, method: nil)
118
118
  GRPC.logger.debug "Intercepting client streamer method #{method}" \
119
119
  " with call #{call}"
120
120
  yield
@@ -127,7 +127,7 @@ module GRPC
127
127
  # @param [GRPC::ActiveCall::SingleReqView] call
128
128
  # @param [Method] method
129
129
  #
130
- def server_streamer(request:, call:, method:)
130
+ def server_streamer(request: nil, call: nil, method: nil)
131
131
  GRPC.logger.debug "Intercepting server streamer method #{method}" \
132
132
  " for request #{request} with call #{call}"
133
133
  yield
@@ -140,7 +140,7 @@ module GRPC
140
140
  # @param [GRPC::ActiveCall::MultiReqView] call
141
141
  # @param [Method] method
142
142
  #
143
- def bidi_streamer(requests:, call:, method:)
143
+ def bidi_streamer(requests: nil, call: nil, method: nil)
144
144
  GRPC.logger.debug "Intercepting bidi streamer method #{method}" \
145
145
  " for requests #{requests} with call #{call}"
146
146
  yield
@@ -14,5 +14,5 @@
14
14
 
15
15
  # GRPC contains the General RPC module.
16
16
  module GRPC
17
- VERSION = '1.7.1'
17
+ VERSION = '1.7.2'
18
18
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.7.2
5
5
  platform: universal-darwin
6
6
  authors:
7
7
  - gRPC Authors
8
8
  autorequire:
9
9
  bindir: src/ruby/bin
10
10
  cert_chain: []
11
- date: 2017-10-31 00:00:00.000000000 Z
11
+ date: 2017-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf