bc-lightstep-ruby 1.3.1 → 1.3.2

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: 39888ce33cb784b4e9bf294ef12948c14117a68eb0f19ed556c3d1bda47ca35b
4
- data.tar.gz: a321672c7e044a5db91d6e58d051058acfaf347fabcb2d736fcac2d1024bad86
3
+ metadata.gz: b39021905f9eb24745173f83101b940111ce2287f2a6adbee8a2fb1e7a82eda7
4
+ data.tar.gz: 4bbad5339f51f96a4095eb5be1fa695ffe69ca5278b2be78b8ef7141a5d01010
5
5
  SHA512:
6
- metadata.gz: '009121dcef8ced54b459af1a4f3349cd50d49e08d5274afe99c14092507c16f48f661fdba98366faf895556053ea13365aaa7eadbe3b6c7aae75e17097c38a41'
7
- data.tar.gz: 714da396916d0486762a9e7246bab4e94054ffab51a9db4cd5d14eb07136e03dd74e79abb05023a374d4481fa2fff72fe3b6655d949850799b0cc6e92cf98ea2
6
+ metadata.gz: 3799580c8a643c9d7da56fb74bb23880ecade760f838009eab791974842bbd0d0001b26d642f79b3208b3043657a3156379efe4f3ae2d192b20846295c8be862
7
+ data.tar.gz: 649663847c8b8478b63eabb712c5187b6c2dd517572502084b3be134ce880255b717de8b4967bcababd98f0fb358ba4ccaf5af84948493136d67ce2c46024d95
data/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ h3. 1.3.1
7
7
  - Add various options to suppress redis trace spam
8
8
  - Fix issue with pipeline commands in redis instrumentation
9
9
 
10
+ h3. 1.3.2
11
+
12
+ - Fix compatibility issues with resque-scheduler and redis instrumentation
13
+
10
14
  h3. 1.3.0
11
15
 
12
16
  - Adds automatic Redis instrumentation support
@@ -41,7 +41,7 @@ module Bigcommerce
41
41
  alias_method :call_original, :call
42
42
  alias_method :call_pipeline_original, :call_pipeline
43
43
 
44
- def call(command)
44
+ def call(command, &block)
45
45
  return call_original(command) unless bc_lightstep_tracer
46
46
 
47
47
  bc_lightstep_tracer.trace(
@@ -51,7 +51,7 @@ module Bigcommerce
51
51
  host: host,
52
52
  port: port
53
53
  ) do
54
- call_original(command)
54
+ call_original(command, &block)
55
55
  end
56
56
  end
57
57
 
@@ -15,6 +15,6 @@
15
15
  #
16
16
  module Bigcommerce
17
17
  module Lightstep
18
- VERSION = '1.3.1'.freeze
18
+ VERSION = '1.3.2'.freeze
19
19
  end
20
20
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bc-lightstep-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shaun McCormick
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-26 00:00:00.000000000 Z
11
+ date: 2019-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -135,7 +135,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
135
  - !ruby/object:Gem::Version
136
136
  version: '0'
137
137
  requirements: []
138
- rubygems_version: 3.0.2
138
+ rubyforge_project:
139
+ rubygems_version: 2.7.7
139
140
  signing_key:
140
141
  specification_version: 4
141
142
  summary: Gem for lightstep distributed tracing