google-cloud-pubsub 0.39.2 → 0.39.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/lib/google/cloud/pubsub/subscriber/stream.rb +1 -1
- data/lib/google/cloud/pubsub/subscriber/timed_unary_buffer.rb +2 -2
- data/lib/google/cloud/pubsub/v1/publisher_client_config.json +3 -3
- data/lib/google/cloud/pubsub/v1/subscriber_client_config.json +3 -3
- data/lib/google/cloud/pubsub/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73f7842ab38615304cdae95c371eb8afea6bc4299208ba3ae4c61e4db85356ba
|
|
4
|
+
data.tar.gz: 6b0e30cf14ee025dc2abdb7bcbfb7424fe93952c9dfc24a9cd01837a7a813621
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e343262355396ae126ac9945df4a89f7af156f9f6a4ea7f31581eceee691f875595235fed0e3d2800b5b49aea46e61fe528db32f35c10c42f3b3c738e5608c1
|
|
7
|
+
data.tar.gz: edcdc80a74455127b8817a5aa2cf9b95c5a057a37fe5e9e6f15fa2f5da90ad4fa16290548a07311ed15df719c88cfa4e87b350047e769137f4d8215bcc6015be
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### 0.39.3 / 2019-09-27
|
|
4
|
+
|
|
5
|
+
#### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* Fix Subscriber#wait! behavior
|
|
8
|
+
* Fix an issue where the Subscriber#wait! would block
|
|
9
|
+
for only 60 seconds, and not indefinitely.
|
|
10
|
+
* This was introduced in the previous release, 0.39.2.
|
|
11
|
+
|
|
12
|
+
#### Configuration Changes
|
|
13
|
+
|
|
14
|
+
* Update Subscriber acknowledge and modify_ack_deadline configuration
|
|
15
|
+
* The acknowledge and modify_ack_deadline RPCs have a lower size
|
|
16
|
+
limit than the other RPCs. Requests larger than 524288 bytes will
|
|
17
|
+
raise invalid argument errors.
|
|
18
|
+
* Update low-level client network configuration
|
|
19
|
+
|
|
3
20
|
### 0.39.2 / 2019-09-17
|
|
4
21
|
|
|
5
22
|
#### Bug Fixes
|
|
@@ -27,7 +27,7 @@ module Google
|
|
|
27
27
|
|
|
28
28
|
attr_reader :max_bytes, :interval
|
|
29
29
|
|
|
30
|
-
def initialize subscriber, max_bytes:
|
|
30
|
+
def initialize subscriber, max_bytes: 500000, interval: 1.0
|
|
31
31
|
super() # to init MonitorMixin
|
|
32
32
|
|
|
33
33
|
@subscriber = subscriber
|
|
@@ -135,7 +135,7 @@ module Google
|
|
|
135
135
|
synchronize do
|
|
136
136
|
return {} if @register.empty?
|
|
137
137
|
reg = @register
|
|
138
|
-
@register =
|
|
138
|
+
@register = {}
|
|
139
139
|
reg
|
|
140
140
|
end
|
|
141
141
|
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"initial_retry_delay_millis": 100,
|
|
36
36
|
"retry_delay_multiplier": 1.3,
|
|
37
37
|
"max_retry_delay_millis": 60000,
|
|
38
|
-
"initial_rpc_timeout_millis":
|
|
39
|
-
"rpc_timeout_multiplier": 1.
|
|
40
|
-
"max_rpc_timeout_millis":
|
|
38
|
+
"initial_rpc_timeout_millis": 5000,
|
|
39
|
+
"rpc_timeout_multiplier": 1.3,
|
|
40
|
+
"max_rpc_timeout_millis": 600000,
|
|
41
41
|
"total_timeout_millis": 600000
|
|
42
42
|
}
|
|
43
43
|
},
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"initial_retry_delay_millis": 100,
|
|
27
27
|
"retry_delay_multiplier": 1.3,
|
|
28
28
|
"max_retry_delay_millis": 60000,
|
|
29
|
-
"initial_rpc_timeout_millis":
|
|
30
|
-
"rpc_timeout_multiplier": 1.
|
|
31
|
-
"max_rpc_timeout_millis":
|
|
29
|
+
"initial_rpc_timeout_millis": 5000,
|
|
30
|
+
"rpc_timeout_multiplier": 1.3,
|
|
31
|
+
"max_rpc_timeout_millis": 600000,
|
|
32
32
|
"total_timeout_millis": 600000
|
|
33
33
|
},
|
|
34
34
|
"streaming_messaging": {
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-pubsub
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.39.
|
|
4
|
+
version: 0.39.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Moore
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-09-
|
|
12
|
+
date: 2019-09-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: google-cloud-core
|