dispatch-rider 1.2.7 → 1.2.8
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e4ecc3cb31c588f86ad0fb803347f98752458ca2
|
|
4
|
+
data.tar.gz: 5945c905356d231948477a34104e7ebcbf9c385e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e68f71bac1ba5447ccca27a199ea2a08f5a869601d7a760926f27d348537d902aafc9878050ece7b755010a9d26fa5b1631130c0dc836d71e7909774af8fcdad
|
|
7
|
+
data.tar.gz: 792dc04c2eea1c68c573889ebefe4c39c9b7fe200e6895922eade10b12a24da6f91d9a333240fe1872df7131f65933939e95218fa908fc56d0aa44a33cf315b6
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
if defined? Appsignal
|
|
2
|
-
Appsignal.logger.info('Loading Dispatch Rider integration')
|
|
2
|
+
::Appsignal.logger.info('Loading Dispatch Rider integration')
|
|
3
3
|
|
|
4
4
|
module DispatchRider
|
|
5
5
|
module Integrations
|
|
@@ -7,9 +7,9 @@ if defined? Appsignal
|
|
|
7
7
|
|
|
8
8
|
def self.wrap_message(job, message)
|
|
9
9
|
begin
|
|
10
|
-
Appsignal::Transaction.create(SecureRandom.uuid, ENV.to_hash)
|
|
10
|
+
::Appsignal::Transaction.create(SecureRandom.uuid, ENV.to_hash)
|
|
11
11
|
|
|
12
|
-
ActiveSupport::Notifications.instrument(
|
|
12
|
+
::ActiveSupport::Notifications.instrument(
|
|
13
13
|
'perform_job.dispatch-rider',
|
|
14
14
|
:class => message.subject,
|
|
15
15
|
:method => 'handle',
|
|
@@ -20,12 +20,12 @@ if defined? Appsignal
|
|
|
20
20
|
job.call
|
|
21
21
|
end
|
|
22
22
|
rescue Exception => exception
|
|
23
|
-
unless Appsignal.is_ignored_exception?(exception)
|
|
24
|
-
Appsignal::Transaction.current.add_exception(exception)
|
|
23
|
+
unless ::Appsignal.is_ignored_exception?(exception)
|
|
24
|
+
::Appsignal::Transaction.current.add_exception(exception)
|
|
25
25
|
end
|
|
26
26
|
raise exception
|
|
27
27
|
ensure
|
|
28
|
-
Appsignal::Transaction.current.complete!
|
|
28
|
+
::Appsignal::Transaction.current.complete!
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
31
|
|
|
@@ -33,17 +33,16 @@ if defined? Appsignal
|
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
Appsignal.start
|
|
38
|
-
|
|
39
|
-
DispatchRider.configure do |config|
|
|
40
|
-
|
|
41
|
-
config.around(:dispatch_message) do |job, message|
|
|
42
|
-
DispatchRider::Integrations::Appsignal.wrap_message(job, message)
|
|
43
|
-
end
|
|
36
|
+
DispatchRider.configure do |config|
|
|
44
37
|
|
|
38
|
+
config.around(:dispatch_message) do |job, message|
|
|
39
|
+
DispatchRider::Integrations::Appsignal.wrap_message(job, message)
|
|
45
40
|
end
|
|
46
41
|
|
|
47
42
|
end
|
|
48
43
|
|
|
44
|
+
if ::Appsignal.active?
|
|
45
|
+
::Appsignal.start
|
|
46
|
+
end
|
|
47
|
+
|
|
49
48
|
end
|
|
@@ -5,6 +5,7 @@ module DispatchRider
|
|
|
5
5
|
attr_reader :total_timeout, :start_time
|
|
6
6
|
|
|
7
7
|
def initialize(message, raw_item, queue)
|
|
8
|
+
@queue = queue
|
|
8
9
|
@total_timeout = queue.visibility_timeout
|
|
9
10
|
@start_time = Time.now
|
|
10
11
|
super(message, raw_item)
|
|
@@ -37,7 +38,7 @@ module DispatchRider
|
|
|
37
38
|
end
|
|
38
39
|
|
|
39
40
|
def queue_name
|
|
40
|
-
queue.arn.split(':').last
|
|
41
|
+
@queue.arn.split(':').last
|
|
41
42
|
end
|
|
42
43
|
|
|
43
44
|
end
|