google-cloud-debugger 0.33.6 → 0.33.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: 15c05450b8c520b7370a9a2781bb6b601395d048d0c9bfc337dbd5910d98702c
4
- data.tar.gz: 9ebae1ecf068fdd8eadbc201041cb87417aa64e0fbfc5e854ba604d698c05d0c
3
+ metadata.gz: 38da00f1a12f8f7d55fdfcff126170f3ab8e47fadfcfc809c5375cbf73389ab6
4
+ data.tar.gz: f721a3c9e7c7a15942c597bbe62717f4598120b83a5630d2048449c1d18395bb
5
5
  SHA512:
6
- metadata.gz: c7e275fbcabfad6ee19c3663762cce6db71dbc735a57b8e76ef175a2d4bb97f7ffa4cb9df2a6e643069e68c9c8af1ee8eb747a5e7bab2893a7be0ec6d2a148ba
7
- data.tar.gz: 83c22c59081f8f1a077901417211b562602c3e0d4a2b99a7159feb95765bbe173daba7ab9a1ae091d5e92806f0d6a381297a4ac9af2b2b7395e9acc46875d8ce
6
+ metadata.gz: d63b203cf35e2cc0f758c00e7076d1f4784605417ba45998636a0ed1fefd7ca54b2baeaa4cbf7829fe1eb85a5935a48d3c57801ce6e358f00074c2f73ecc3cdd
7
+ data.tar.gz: d10c02f85464a0bffda4aafb8115aa403911daeafd59885b5e8f578ba38b1bb975804bfd7196fcedfe2e024848a07d1cf49c2057c53784f63e304fa706c345b4
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 0.33.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.33.6 / 2019-07-08
4
10
 
5
11
  * Support overriding service host and port in the low-level client.
@@ -58,7 +58,7 @@ you want to run on a non Google Cloud environment or you want to customize
58
58
  the default behavior.
59
59
 
60
60
  See the
61
- [Configuration Guide](https://googleapis.github.io/google-cloud-ruby/#/docs/stackdriver/guides/instrumentation_configuration)
61
+ [Configuration Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
62
62
  for full configuration parameters.
63
63
 
64
64
  ### Using instrumentation with Ruby on Rails
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)
@@ -154,7 +154,7 @@ module Google
154
154
  # single argument.
155
155
  #
156
156
  # See the [Configuration
157
- # Guide](https://googleapis.github.io/google-cloud-ruby/docs/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION)
157
+ # Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
158
158
  # for full configuration parameters.
159
159
  #
160
160
  # @return [Google::Cloud::Config] The configuration object the
@@ -99,7 +99,7 @@ module Google
99
99
  # using the other parameters.
100
100
  # @param [Hash] kwargs Hash of configuration settings. Used for backward
101
101
  # API compatibility. See the [Configuration
102
- # Guide](https://googleapis.github.io/google-cloud-ruby/docs/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION)
102
+ # Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
103
103
  # for the prefered way to set configuration parameters.
104
104
  #
105
105
  # @return [Google::Cloud::Debugger::Middleware] A new
@@ -34,7 +34,7 @@ module Google
34
34
  #
35
35
  # The Railtie should also initialize a debugger to be used by the
36
36
  # Middleware. See the [Configuration
37
- # Guide](https://googleapis.github.io/google-cloud-ruby/docs/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION)
37
+ # Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
38
38
  # on how to configure the Railtie and Middleware.
39
39
  #
40
40
  class Railtie < ::Rails::Railtie
@@ -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
 
@@ -36,7 +36,7 @@ module Google
36
36
  # 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
37
37
  # 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
38
38
  # 3. [Enable the Stackdriver Debugger API.](https://console.cloud.google.com/apis/library/clouddebugger.googleapis.com)
39
- # 4. [Setup Authentication.](https://googleapis.github.io/google-cloud-ruby/#/docs/google-cloud/master/guides/authentication)
39
+ # 4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-debugger/latest/file.AUTHENTICATION.html)
40
40
  #
41
41
  # ### Installation
42
42
  # ```
@@ -55,7 +55,7 @@ module Google
55
55
  #
56
56
  # To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
57
57
  # The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
58
- # or a [`Google::Cloud::Logging::Logger`](https://googleapis.github.io/google-cloud-ruby/#/docs/google-cloud-logging/latest/google/cloud/logging/logger)
58
+ # or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
59
59
  # that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
60
60
  # and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
61
61
  #
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Debugger
19
- VERSION = "0.33.6".freeze
19
+ VERSION = "0.33.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-debugger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.33.6
4
+ version: 0.33.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Heng Xiong
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: binding_of_caller
@@ -364,7 +364,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
364
364
  - !ruby/object:Gem::Version
365
365
  version: '0'
366
366
  requirements: []
367
- rubygems_version: 3.0.3
367
+ rubygems_version: 3.0.4
368
368
  signing_key:
369
369
  specification_version: 4
370
370
  summary: API Client and instrumentation library for Stackdriver Debugger