google-cloud-pubsub 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e4009798b16429d21a423b19e5e043a5e390725c24f3ba6cc474ec9955dc4cb0
4
- data.tar.gz: 6a75238beec6c33c422fa8b21ec3c69f59e219fc9a97020c9a7b4372e64af33a
3
+ metadata.gz: 1a60a9cf11c66c67011c5b35c44f0a6dd70a1c57dabba5520330ed153c9978a7
4
+ data.tar.gz: b904d000b778794cc88f9b2242e616af8aac4a53fae285e3d838717f6c3f09e6
5
5
  SHA512:
6
- metadata.gz: 026a8e639966e883ad44448cf015fb5b4d40c802e07c7d61f840a761684f132da58722808247341741570dc65fe464a4e6c2e8a817c23b1dd087b923b398f091
7
- data.tar.gz: badf354dbdf8eb305f67429b6c21b71af4237f4e4b78e90dd913513b416f4df6dae4faa844245096c9871d81c84d38553b0f5d6870b7b982f3dfd5e92818f63f
6
+ metadata.gz: 24a71018489495e32ffe9d342329d4e2b905461ed165457fcec80395f2a73c493b2bf4223d5af36ae4958f72efab10cd9b44196ee7773868fe0df53a1f0ffbed
7
+ data.tar.gz: f23b5eeb43a5d46d0e03be40fd73277df94ffeb69e1ecf900e68f8d9fce8455fdf5a66f16ac74a8f76d2c135d22972ffac41a7d255764b73de0be6308b9e9323
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 1.1.2 / 2019-11-19
4
+
5
+ #### Performance Improvements
6
+
7
+ * Update network configuration
8
+
3
9
  ### 1.1.1 / 2019-11-06
4
10
 
5
11
  #### Bug Fixes
@@ -37,8 +37,8 @@
37
37
  "max_retry_delay_millis": 60000,
38
38
  "initial_rpc_timeout_millis": 5000,
39
39
  "rpc_timeout_multiplier": 1.3,
40
- "max_rpc_timeout_millis": 600000,
41
- "total_timeout_millis": 600000
40
+ "max_rpc_timeout_millis": 60000,
41
+ "total_timeout_millis": 60000
42
42
  }
43
43
  },
44
44
  "methods": {
@@ -57,9 +57,9 @@
57
57
  "retry_codes_name": "publish",
58
58
  "retry_params_name": "messaging",
59
59
  "bundling": {
60
- "element_count_threshold": 10,
60
+ "element_count_threshold": 100,
61
61
  "element_count_limit": 1000,
62
- "request_byte_threshold": 1024,
62
+ "request_byte_threshold": 1048576,
63
63
  "request_byte_limit": 10485760,
64
64
  "delay_threshold_millis": 10
65
65
  }
@@ -10,7 +10,13 @@
10
10
  "non_idempotent": [
11
11
  "UNAVAILABLE"
12
12
  ],
13
- "none": []
13
+ "streaming_pull": [
14
+ "ABORTED",
15
+ "DEADLINE_EXCEEDED",
16
+ "INTERNAL",
17
+ "RESOURCE_EXHAUSTED",
18
+ "UNAVAILABLE"
19
+ ]
14
20
  },
15
21
  "retry_params": {
16
22
  "default": {
@@ -84,7 +90,7 @@
84
90
  },
85
91
  "StreamingPull": {
86
92
  "timeout_millis": 900000,
87
- "retry_codes_name": "none",
93
+ "retry_codes_name": "streaming_pull",
88
94
  "retry_params_name": "streaming_messaging"
89
95
  },
90
96
  "ModifyPushConfig": {
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module PubSub
19
- VERSION = "1.1.1".freeze
19
+ VERSION = "1.1.2".freeze
20
20
  end
21
21
 
22
22
  Pubsub = PubSub unless const_defined? :Pubsub
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: 1.1.1
4
+ version: 1.1.2
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-11-06 00:00:00.000000000 Z
12
+ date: 2019-11-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby