eventq_aws 1.12.0 → 1.13.0

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: 7afc5b68dc722ef6547d19b6455d9100cd51628d
4
- data.tar.gz: 5f0cb52ceecb844a317d405e0063c6d8d88a8b7f
3
+ metadata.gz: 01cea42254d1ea2a4cd9a3c37732600f37b1d3a7
4
+ data.tar.gz: 55bfc32d922e4e64c473a6f2ec902f0e14390ce4
5
5
  SHA512:
6
- metadata.gz: df970ec2572e071a2d1288a6353702e314544083897c42731f4d2ab9adea3582451143eba631a6352cd4a5401ca3c35faea5fe638c4142753f38236c59bf86f6
7
- data.tar.gz: 15ba056beb5de87a6ae2153ca541dc45d92bba49057e0b48e803aaa7c2962223cb731fa32222c0ba4b8c49e23a1413a176d15f783f6c961427f7c99d920c6f2e
6
+ metadata.gz: 76d4825f3b83aba75853e4d0bd0ba24a2727032012c2b3c4af5bc93e94afbdd25fef5db0e9f229d593653d779cb7c80170f563f3d0e9ae9957e6cd64669e73f0
7
+ data.tar.gz: 6cfdb4276bdb29480caa581137b11d46455e3adae1a2b6e9e9b123f1e5bed805b87734dc2cd8ba856bd14f40d3c52aec55de064c72c5950839fff726efa0c119
@@ -86,6 +86,7 @@ module EventQ
86
86
  qm.content = event
87
87
  qm.type = event_type
88
88
  qm.context = context
89
+ qm.content_type = event.class.to_s
89
90
 
90
91
  if EventQ::Configuration.signature_secret != nil
91
92
  provider = @signature_manager.get_provider(EventQ::Configuration.signature_provider)
@@ -250,7 +250,10 @@ module EventQ
250
250
  payload = JSON.load(msg.body)
251
251
  message = deserialize_message(payload[MESSAGE])
252
252
 
253
- message_args = EventQ::MessageArgs.new(message.type, retry_attempts, message.context)
253
+ message_args = EventQ::MessageArgs.new(type: message.type,
254
+ retry_attempts: retry_attempts,
255
+ context: message.context,
256
+ content_type: message.content_type)
254
257
 
255
258
  EventQ.logger.info("[#{self.class}] - Message received. Retry Attempts: #{retry_attempts}")
256
259
 
@@ -1,5 +1,5 @@
1
1
  module EventQ
2
2
  module Amazon
3
- VERSION = "1.12.0"
3
+ VERSION = "1.13.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eventq_aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - vaughanbrittonsage
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-06-14 00:00:00.000000000 Z
11
+ date: 2017-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -84,30 +84,16 @@ dependencies:
84
84
  name: eventq_base
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: '0'
90
- type: :runtime
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: '0'
97
- - !ruby/object:Gem::Dependency
98
- name: hash_kit
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - ">="
87
+ - - "~>"
102
88
  - !ruby/object:Gem::Version
103
- version: '0'
89
+ version: '1.14'
104
90
  type: :runtime
105
91
  prerelease: false
106
92
  version_requirements: !ruby/object:Gem::Requirement
107
93
  requirements:
108
- - - ">="
94
+ - - "~>"
109
95
  - !ruby/object:Gem::Version
110
- version: '0'
96
+ version: '1.14'
111
97
  description: This is the aws implementation for EventQ
112
98
  email:
113
99
  - vaughanbritton@gmail.com