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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e82e8a2b0ee5efe8865d8bb8bef7862255e2966c
4
- data.tar.gz: 2b19926295a4060b742aecd9a7bfa1bda1ab3431
3
+ metadata.gz: e385f15b5a860be6ff6f5a9d51c2bbdaf9b16102
4
+ data.tar.gz: e3bcf119da2785bfac804db2ae618514c1f6b394
5
5
  SHA512:
6
- metadata.gz: b4fdd6810b6997212c6eac458185efb503c505f214547541357bec9c1f5c3138ca9e1535c716594bc2eaba79c29a1c6bb3496a017b3a3066216aba6ae22a5c75
7
- data.tar.gz: 014ce4f570b63b9856639378bfe3a1153d4dfcf83358ceef38ede6d5d37d29ed70acda922a73cbeb04f746d869385348665816c8017bf5e706c8fb02a2143033
6
+ metadata.gz: 6eebba7ef93cebef3a80053473b15b405c58166000e04012041c483ece7c81120c14392f03565f49988f11e15f78df8322f468700027d502e8f86085ee320ae3
7
+ data.tar.gz: 620bdfab71b0e033fbb3f7a289e8d2d068e84743d8a4925836173e25f098744162dc1d0397239b9fea8efd953891d6a0537013f2bc10e6337b1efb0809fcb84a
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Appsignal
2
- VERSION = '0.11.13.beta.3'
2
+ VERSION = '0.11.13.beta.4'
3
3
  end
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.3
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-04 00:00:00.000000000 Z
15
+ date: 2015-08-05 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: rack