fastly_nsq 1.13.0 → 1.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ChangeLog.md +13 -6
- data/lib/fastly_nsq/listener.rb +3 -1
- data/lib/fastly_nsq/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: fe5f821a6bb5bd6af76cc175f01a84b64ef9af71
|
4
|
+
data.tar.gz: 5199dbad2e9238e52bd696ef01582dc7c0d46701
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db022dcaab20d18ba13b68f1e5f8bb128883d5a94672215d920a84856f107a930b0af77f1db26de7bcfced4954b9c47c175b0834733fb872f629925e9e4a9ada
|
7
|
+
data.tar.gz: 6bae07517c8ba657b31f53c80810c8d44686c2bb3bb461ecfd359bd8b666a18dff5525f83467eff63959322c225c87a1c27cf2738808ec42af90775fff575503
|
data/ChangeLog.md
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [v1.13.
|
3
|
+
## [v1.13.1](https://github.com/fastly/fastly_nsq/tree/v1.13.1)
|
4
4
|
|
5
|
+
[Full Changelog](https://github.com/fastly/fastly_nsq/compare/v1.13.0...v1.13.1)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Fix class\_name for NewRelic reporting [\#91](https://github.com/fastly/fastly_nsq/pull/91) ([leklund](https://github.com/leklund))
|
10
|
+
|
11
|
+
## [v1.13.0](https://github.com/fastly/fastly_nsq/tree/v1.13.0) (2018-07-27)
|
5
12
|
[Full Changelog](https://github.com/fastly/fastly_nsq/compare/v1.12.0...v1.13.0)
|
6
13
|
|
7
14
|
**Merged pull requests:**
|
@@ -390,18 +397,18 @@
|
|
390
397
|
- Initialize the fake queue with an empty array [\#4](https://github.com/fastly/fastly_nsq/pull/4) ([adarsh](https://github.com/adarsh))
|
391
398
|
|
392
399
|
## [v0.1.3](https://github.com/fastly/fastly_nsq/tree/v0.1.3) (2016-02-03)
|
393
|
-
[Full Changelog](https://github.com/fastly/fastly_nsq/compare/v0.
|
400
|
+
[Full Changelog](https://github.com/fastly/fastly_nsq/compare/v0.0.2...v0.1.3)
|
394
401
|
|
395
402
|
**Merged pull requests:**
|
396
403
|
|
397
404
|
- Use a more canonical way to require files [\#3](https://github.com/fastly/fastly_nsq/pull/3) ([adarsh](https://github.com/adarsh))
|
398
405
|
- Remove dependancy on ActiveSupport [\#2](https://github.com/fastly/fastly_nsq/pull/2) ([adarsh](https://github.com/adarsh))
|
399
406
|
|
400
|
-
## [v0.1.1](https://github.com/fastly/fastly_nsq/tree/v0.1.1) (2016-02-03)
|
401
|
-
[Full Changelog](https://github.com/fastly/fastly_nsq/compare/v0.0.2...v0.1.1)
|
402
|
-
|
403
407
|
## [v0.0.2](https://github.com/fastly/fastly_nsq/tree/v0.0.2) (2016-02-03)
|
404
|
-
[Full Changelog](https://github.com/fastly/fastly_nsq/compare/v0.
|
408
|
+
[Full Changelog](https://github.com/fastly/fastly_nsq/compare/v0.1.1...v0.0.2)
|
409
|
+
|
410
|
+
## [v0.1.1](https://github.com/fastly/fastly_nsq/tree/v0.1.1) (2016-02-03)
|
411
|
+
[Full Changelog](https://github.com/fastly/fastly_nsq/compare/v0.0.1...v0.1.1)
|
405
412
|
|
406
413
|
**Merged pull requests:**
|
407
414
|
|
data/lib/fastly_nsq/listener.rb
CHANGED
@@ -129,7 +129,9 @@ class FastlyNsq::Listener
|
|
129
129
|
end
|
130
130
|
end
|
131
131
|
|
132
|
-
|
132
|
+
class_name = processor.is_a?(Class) ? processor.name : processor.class.name
|
133
|
+
|
134
|
+
FastlyNsq.tracer.trace_with_newrelic(params: msg_info, class_name: class_name) do
|
133
135
|
preprocessor&.call(message)
|
134
136
|
result = processor.call(message)
|
135
137
|
message.finish if result
|
data/lib/fastly_nsq/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastly_nsq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.13.
|
4
|
+
version: 1.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tommy O'Neil
|
@@ -270,7 +270,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
270
270
|
version: '0'
|
271
271
|
requirements: []
|
272
272
|
rubyforge_project:
|
273
|
-
rubygems_version: 2.
|
273
|
+
rubygems_version: 2.6.14
|
274
274
|
signing_key:
|
275
275
|
specification_version: 4
|
276
276
|
summary: Fastly NSQ Adapter
|