eventq 3.1.0 → 3.2.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -1
- data/lib/eventq/eventq_aws/aws_eventq_client.rb +3 -0
- data/lib/eventq/eventq_base/queue_message.rb +1 -0
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af4dcc4013d3c0d7014585d66a8a654eeedd5d922440129b6385bb6919ccd6db
|
4
|
+
data.tar.gz: 5d154230c47190662e5b3948ac2a3b14dc1816e214c66d7ca0d5bb8783d23d45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54dd8998c6e8486cf8a5bea1e226662a6e4fe969e223ef19f3ad74b57a11d81da02c1fa4e3a4b0000386c403db59fe500e212b3bdbb0bb6be109d925b2db7757
|
7
|
+
data.tar.gz: 002eb08667a497c17dda159799eafec2d45452757d95e635126014bdb45b5be28c29af70837541633e0100ccf871723de024d64fcb22d17ccce4cbbffe92734e
|
data/README.md
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
# EventQ
|
2
2
|
|
3
|
-
[![Build Status](https://travis-ci.org/Sage/eventq.svg?branch=master)](https://travis-ci.org/Sage/eventq)
|
4
3
|
[![Maintainability](https://api.codeclimate.com/v1/badges/87205b497059e2733bdc/maintainability)](https://codeclimate.com/github/Sage/eventq/maintainability)
|
5
4
|
[![Test Coverage](https://api.codeclimate.com/v1/badges/87205b497059e2733bdc/test_coverage)](https://codeclimate.com/github/Sage/eventq/test_coverage)
|
6
5
|
|
@@ -100,6 +100,9 @@ module EventQ
|
|
100
100
|
qm.type = event_type
|
101
101
|
qm.context = context
|
102
102
|
qm.content_type = event.class.to_s
|
103
|
+
if event.respond_to? :Correlation
|
104
|
+
qm.correlation_trace_id = event.Correlation['Trace']
|
105
|
+
end
|
103
106
|
|
104
107
|
if EventQ::Configuration.signature_secret != nil
|
105
108
|
provider = @signature_manager.get_provider(EventQ::Configuration.signature_provider)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eventq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0.alpha1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SageOne
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -112,16 +112,16 @@ dependencies:
|
|
112
112
|
name: simplecov
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- - "
|
115
|
+
- - "<"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
117
|
+
version: 0.18.0
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
|
-
- - "
|
122
|
+
- - "<"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
124
|
+
version: 0.18.0
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: aws-sdk-sqs
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -306,11 +306,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
306
306
|
version: '0'
|
307
307
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
308
308
|
requirements:
|
309
|
-
- - "
|
309
|
+
- - ">"
|
310
310
|
- !ruby/object:Gem::Version
|
311
|
-
version:
|
311
|
+
version: 1.3.1
|
312
312
|
requirements: []
|
313
|
-
rubygems_version: 3.
|
313
|
+
rubygems_version: 3.1.2
|
314
314
|
signing_key:
|
315
315
|
specification_version: 4
|
316
316
|
summary: EventQ is a pub/sub system that uses async notifications and message queues
|