grpc 1.7.1 → 1.7.2
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 +4 -4
- data/Makefile +2 -2
- data/src/ruby/lib/grpc/generic/interceptors.rb +8 -8
- data/src/ruby/lib/grpc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a40959f1aae71a9912bf0a29c194d4ab8e7f6e5c
|
4
|
+
data.tar.gz: c9e3415321b7d7d61851d515693a410b529f11c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24f947a35dfe2a167377ff4fc2e55bae7856a391fb97a4f3e407a507ac9bdf2a9252b27c7f16fa2d57aa304221b4bdca9b559264ad0092dfafffdc59ca8e1794
|
7
|
+
data.tar.gz: c022d82a42205c5646618fb461fcf174b255eef6812795e0e49f1f9106761364032b87ea1433551723834a5a6d0b51489b794053ecdf47935f8bd10a716f248b
|
data/Makefile
CHANGED
@@ -411,8 +411,8 @@ Q = @
|
|
411
411
|
endif
|
412
412
|
|
413
413
|
CORE_VERSION = 5.0.0
|
414
|
-
CPP_VERSION = 1.7.
|
415
|
-
CSHARP_VERSION = 1.7.
|
414
|
+
CPP_VERSION = 1.7.2
|
415
|
+
CSHARP_VERSION = 1.7.2
|
416
416
|
|
417
417
|
CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
|
418
418
|
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
|
@@ -41,7 +41,7 @@ module GRPC
|
|
41
41
|
# @param [Method] method
|
42
42
|
# @param [Hash] metadata
|
43
43
|
#
|
44
|
-
def request_response(request
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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.
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gRPC Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: src/ruby/bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|