appsignal 0.11.13.beta.3 → 0.11.13.beta.4
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 +4 -4
- data/CHANGELOG.md +1 -0
- data/lib/appsignal/integrations/resque.rb +2 -2
- data/lib/appsignal/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e385f15b5a860be6ff6f5a9d51c2bbdaf9b16102
|
|
4
|
+
data.tar.gz: e3bcf119da2785bfac804db2ae618514c1f6b394
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6eebba7ef93cebef3a80053473b15b405c58166000e04012041c483ece7c81120c14392f03565f49988f11e15f78df8322f468700027d502e8f86085ee320ae3
|
|
7
|
+
data.tar.gz: 620bdfab71b0e033fbb3f7a289e8d2d068e84743d8a4925836173e25f098744162dc1d0397239b9fea8efd953891d6a0537013f2bc10e6337b1efb0809fcb84a
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
* Configure Net::HTTP to only use TLS
|
|
6
6
|
* Don't send queue if there is no content
|
|
7
7
|
* Don't retry transmission when response code is 400 (no content)
|
|
8
|
+
* Don't start Resque IPC server when AppSignal is not active
|
|
8
9
|
* Display warning message when attempting to send a non-exception to `send_exception`
|
|
9
10
|
* Fix capistrano 2 detection
|
|
10
11
|
* Fix issue with Sinatra integration attempting to attach an exception to a transaction that doesn't exist.
|
|
@@ -19,13 +19,13 @@ if defined?(::Resque)
|
|
|
19
19
|
|
|
20
20
|
# Set up IPC
|
|
21
21
|
Resque.before_first_fork do
|
|
22
|
-
Appsignal::IPC::Server.start
|
|
22
|
+
Appsignal::IPC::Server.start if Appsignal.active?
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
# In the fork, stop the normal agent startup
|
|
26
26
|
# and stop listening to the server
|
|
27
27
|
Resque.after_fork do |job|
|
|
28
|
-
Appsignal::IPC.forked!
|
|
28
|
+
Appsignal::IPC.forked! if Appsignal.active?
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
# Extend the default job class with AppSignal instrumentation
|
data/lib/appsignal/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appsignal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.13.beta.
|
|
4
|
+
version: 0.11.13.beta.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Beekman
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2015-08-
|
|
15
|
+
date: 2015-08-05 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: rack
|