bc-lightstep-ruby 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/bigcommerce/lightstep/redis/wrapper.rb +2 -2
- data/lib/bigcommerce/lightstep/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b39021905f9eb24745173f83101b940111ce2287f2a6adbee8a2fb1e7a82eda7
|
4
|
+
data.tar.gz: 4bbad5339f51f96a4095eb5be1fa695ffe69ca5278b2be78b8ef7141a5d01010
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
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.
|
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-
|
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
|
-
|
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
|