sqewer 6.2.0 → 6.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '09e6812e437ea73062add603664517055b6eff54'
4
- data.tar.gz: e7f001ecc56fc313c0af256c4bf5b89635318fad
3
+ metadata.gz: 8e1b1d8c965c0c3ffbfcc3905e1d25762d15f727
4
+ data.tar.gz: 6bbac73b80768676784320373a12bcf76f55289d
5
5
  SHA512:
6
- metadata.gz: 14f6ac8a671ec1b6b13f9d24f4e3c13e844c37150ae50ca44c0b20d83590e2ff96173a83e225a63e9e613c6b4c479a2ec3e88e82ddbffa1c62a0817591958b89
7
- data.tar.gz: f007a131aa6412f252e46316fdca1eb9a7895ad0eddbc9ae3a2ab0cbeaf8bc6a03ce7d7f5cfc665fe61a1b530858e52894ba7e72b1682d7a4decc7ca6db40872
6
+ metadata.gz: 5b3eb41d4dc80e7ef572743c2d0f67cc3cfbce1df828faea8a84c8949c7f2d087922441d35aa5cfa7eab28d885baffba3167d9bc039c9357e337736e5d7e4f3d
7
+ data.tar.gz: cb752122d384939a115a025d23dc82634b5da9b8409b5a8c4b4fa5f37b14a73322718c5fd3aaf88e4db2da65a6616d911749ffd7f61d5892fe3c75fe9611bc9b
@@ -1,3 +1,6 @@
1
+ ### 6.2.1
2
+ - Appsignal queue start time should be set as an Integer of milliseconds, not as a Time object
3
+
1
4
  ### 6.2.0
2
5
  - Store SentTimestamp in SQLite and restore it on execution
3
6
 
@@ -36,7 +36,7 @@ module Sqewer
36
36
  transaction.set_action('%s#%s' % [serializer.class, 'unserialize'])
37
37
  transaction.request.params = {:sqs_message_body => msg_payload.to_s}
38
38
  if msg_attributes.key?('SentTimestamp')
39
- transaction.set_queue_start = Time.at(msg_attributes['SentTimestamp'].to_i / 1000.0)
39
+ transaction.set_queue_start = msg_attributes['SentTimestamp'].to_i
40
40
  end
41
41
 
42
42
  job_unserialized = yield
@@ -1,3 +1,3 @@
1
1
  module Sqewer
2
- VERSION = '6.2.0'
2
+ VERSION = '6.2.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqewer
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.0
4
+ version: 6.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julik Tarkhanov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-08 00:00:00.000000000 Z
11
+ date: 2019-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-sqs