google-cloud-error_reporting 0.31.6 → 0.31.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d5084668828ea4b8f521f068491eed31abc837ec9f06ad8dd8da47650f44111
4
- data.tar.gz: 01d5cfad4e0ab19968ddc29f660f6427c2cb8a8fc46d2f012f35f4e0ffb2cd3a
3
+ metadata.gz: 1569c000e3233e3a1ecee4f2591ff47992f664b6fb3a703bdb318dd4b15402bd
4
+ data.tar.gz: d2e2e3b55d55eb7f4702d3cff8041e90b59c26d1fdf2870d62c1609419a5c312
5
5
  SHA512:
6
- metadata.gz: 8a491f93c8b64714bb0f361f1d261038a645b36001fbc6ec2a5a073358fd2c344e796b8a77a8db995a15df5e383e2eadf63fcf8b125f0734c319bd0a28698502
7
- data.tar.gz: e7545831b190b56de3d7d07f83ccfb9c4fb6a4a905714ffe7e75330216e28c3418ccf8c18a5e275daa15bacd6b8f0d7321babf2b9f72092f44594b8dd530c1c5
6
+ metadata.gz: 6abbed2d8a391daf2a8eddc41df0e2499266e2c4adb74e980c0f21f8c63f9a3e01bb6fde7831a3caa13c3567f378906873d4c4453f6047f44a9eec3a41e785cc
7
+ data.tar.gz: 38db4c543e57d97489126e7c5f313e3fb9ba0a04a0e65ea9465dbb1121d9ed6619276f6f56f1b37b4d515ec75a9672e5f610e5ce0f88b6fa5442d69ee4ac56c0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 0.31.7 / 2019-07-31
4
+
5
+ * Fix max threads setting in thread pools
6
+ * Thread pools once again limit the number of threads allocated.
7
+ * Update documentation links
8
+
3
9
  ### 0.31.6 / 2019-07-08
4
10
 
5
11
  * Support overriding service host and port in the low-level interface.
data/INSTRUMENTATION.md CHANGED
@@ -26,7 +26,7 @@ you want to run on a non Google Cloud environment or you want to customize the
26
26
  default behavior.
27
27
 
28
28
  See the [Configuration
29
- Guide](https://googleapis.github.io/google-cloud-ruby/docs/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION)
29
+ Guide](https://googleapis.dev/ruby/stackdriver/INSTRUMENTATION_CONFIGURATION/latest)
30
30
  for full configuration parameters.
31
31
 
32
32
  ## Rack Middleware and Railtie
@@ -48,7 +48,7 @@ require "google/cloud/error_reporting/rails"
48
48
  ```
49
49
 
50
50
  Alternatively, check out the
51
- [stackdriver](https://googleapis.github.io/google-cloud-ruby/docs/stackdriver/latest)
51
+ [stackdriver](https://googleapis.dev/ruby/stackdriver/latest/file.README.html
52
52
  gem, which enables this Railtie by default.
53
53
 
54
54
  ### Rack Integration
data/LOGGING.md CHANGED
@@ -5,7 +5,7 @@ To enable logging for this library, set the logger for the underlying
5
5
  that you set may be a Ruby stdlib
6
6
  [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as
7
7
  shown below, or a
8
- [`Google::Cloud::Logging::Logger`](https://googleapis.github.io/google-cloud-ruby/docs/google-cloud-logging/latest/Google/Cloud/Logging/Logger)
8
+ [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
9
9
  that will write logs to [Stackdriver
10
10
  Logging](https://cloud.google.com/logging/). See
11
11
  [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
@@ -136,7 +136,7 @@ module Google
136
136
  # ErrorReporting.
137
137
  #
138
138
  # See the [Configuration
139
- # Guide](https://googleapis.github.io/google-cloud-ruby/docs/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION)
139
+ # Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
140
140
  # for full configuration parameters.
141
141
  #
142
142
  # @example
@@ -78,8 +78,8 @@ module Google
78
78
  @max_queue = max_queue
79
79
  @threads = threads
80
80
 
81
- @thread_pool = Concurrent::CachedThreadPool.new max_threads: @threads,
82
- max_queue: @max_queue
81
+ @thread_pool = Concurrent::ThreadPoolExecutor.new \
82
+ max_threads: @threads, max_queue: @max_queue
83
83
 
84
84
  @error_callbacks = []
85
85
 
@@ -39,7 +39,7 @@ module Google
39
39
  # exceptions
40
40
  # @param [Hash] kwargs Hash of configuration settings. Used for backward
41
41
  # API compatibility. See the [Configuration
42
- # Guide](https://googleapis.github.io/google-cloud-ruby/docs/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION)
42
+ # Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
43
43
  # for the prefered way to set configuration parameters.
44
44
  #
45
45
  # @return [Google::Cloud::ErrorReporting::Middleware] A new instance of
@@ -35,7 +35,7 @@ module Google
35
35
  # and handle all Exceptions without interfering with Rails's normal error
36
36
  # pages.
37
37
  # See the [Configuration
38
- # Guide](https://googleapis.github.io/google-cloud-ruby/docs/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION)
38
+ # Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
39
39
  # on how to configure the Railtie and Middleware.
40
40
  #
41
41
  class Railtie < ::Rails::Railtie
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module ErrorReporting
19
- VERSION = "0.31.6".freeze
19
+ VERSION = "0.31.7".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-error_reporting
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.6
4
+ version: 0.31.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-09 00:00:00.000000000 Z
11
+ date: 2019-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-core
@@ -288,7 +288,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
288
288
  - !ruby/object:Gem::Version
289
289
  version: '0'
290
290
  requirements: []
291
- rubygems_version: 3.0.3
291
+ rubygems_version: 3.0.4
292
292
  signing_key:
293
293
  specification_version: 4
294
294
  summary: API Client library for Stackdriver Error Reporting