harmoniser 0.3.0 → 0.4.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 +4 -4
- data/CHANGELOG.md +16 -7
- data/README.md +0 -1
- data/lib/harmoniser/channelable.rb +14 -2
- data/lib/harmoniser/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b1feaead73df2956797f89d33ed45a3316cf5191852946c1b0d3cbe2e2284f18
|
4
|
+
data.tar.gz: 6ba7ae634d24a012d4243d392d4299a9fd88a35af5df1251efec24bb4817ce9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9cfcdeec3f6e205c9301d5f2142cd8e7fee0723ed5950fdf1bd12a704f1cc29ecf971e39c75ef7ace071ea577a37f45a874c4016a63c561d25c3e206f1fb0e6f
|
7
|
+
data.tar.gz: 45b409fb2bfa3ec1752101915fad8f52ccf1e5a5ea1402e23ee6fc062e952fbdb78a16015f77bc2ef2ddafda04859eb23d0e9c8c9cef06a9675fe0c44e81f5d5
|
data/CHANGELOG.md
CHANGED
@@ -1,13 +1,19 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [0.
|
3
|
+
## [0.4.0] - 2023-12-07
|
4
4
|
|
5
5
|
### Added
|
6
|
+
- Default logger with error severity for when errors occur at channel level
|
7
|
+
- Default logger with error severity for when errors occur while processing a message from a queue
|
6
8
|
|
7
|
-
|
8
|
-
-
|
9
|
-
|
10
|
-
|
9
|
+
### Removed
|
10
|
+
- Unused docker image for rabbitMQ (only for development purposes)
|
11
|
+
|
12
|
+
## [0.3.0] - 2023-11-29
|
13
|
+
|
14
|
+
### Added
|
15
|
+
|
16
|
+
- Introduce github action for building, linting and running specs anytime a pull request is opened or push to master happens
|
11
17
|
|
12
18
|
## [0.2.0] - 2023-11-28
|
13
19
|
|
@@ -15,8 +21,11 @@
|
|
15
21
|
|
16
22
|
- Introduce github action for releasing the gem once is merged into master
|
17
23
|
|
18
|
-
## [0.
|
24
|
+
## [0.1.0] - 2023-11-27
|
19
25
|
|
20
26
|
### Added
|
21
27
|
|
22
|
-
-
|
28
|
+
- Support to express publishing through any kind of exchanges
|
29
|
+
- Capability to subscribe to queues
|
30
|
+
- Express RabbitMQ topology separated from the responsibility of publishing or subscribing
|
31
|
+
- Provide dedicated Ruby process to consume messages through the subscribers defined
|
data/README.md
CHANGED
@@ -125,7 +125,6 @@ You can also shell into the running container by executing `$ make shell` and fr
|
|
125
125
|
- [ ] Chore: Introduce simplecov gem for code coverage.
|
126
126
|
- [ ] Feature: Add sensible defaults for Session options like heartbeat, timeout, recovery_completed or recovery_attempt_started.
|
127
127
|
- [ ] Feature: Add default `on_return` handler as well as permitting the definition of on_return method to be called anytime a published message gets returned.
|
128
|
-
- [ ] Feature: Add default `on_error` and `on_uncaught_exception` as well as permitting the definition of them to be called anytime an error in the channel occurs or error in the consumer handler happens.
|
129
128
|
- [ ] Feature: Introduce capability of configuring number of threads for queue consuming at the CLI.
|
130
129
|
|
131
130
|
## License
|
@@ -11,8 +11,20 @@ module Harmoniser
|
|
11
11
|
end
|
12
12
|
|
13
13
|
def create_channel
|
14
|
-
|
15
|
-
|
14
|
+
channel = Harmoniser.connection.create_channel
|
15
|
+
channel.on_error(&method(:on_error).to_proc)
|
16
|
+
channel.on_uncaught_exception(&method(:on_uncaught_exception).to_proc)
|
17
|
+
channel
|
18
|
+
end
|
19
|
+
|
20
|
+
private
|
21
|
+
|
22
|
+
def on_error(channel, amq_method)
|
23
|
+
Harmoniser.logger.error("Default on_error handler executed for channel: method = `#{amq_method}`, exchanges = `#{channel.exchanges.keys}`, queues = `#{channel.queues.keys}`")
|
24
|
+
end
|
25
|
+
|
26
|
+
def on_uncaught_exception(error, consumer)
|
27
|
+
Harmoniser.logger.error("Default on_uncaught_exception handler executed for channel: error_class = `#{error.class}`, error_message = `#{error.message}`, error_backtrace = `#{error.backtrace&.first(5)}, queue = `#{consumer.queue}`")
|
16
28
|
end
|
17
29
|
end
|
18
30
|
|
data/lib/harmoniser/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: harmoniser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jose Lloret
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bunny
|