omq 0.17.5 → 0.17.6
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 +8 -0
- data/lib/omq/engine.rb +2 -2
- data/lib/omq/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b990bcb03502bd0cc09d92cf0c402dfeca1602faec96ecfce85500f0c1d2aa7b
|
|
4
|
+
data.tar.gz: 129e85fa71560045d6bba7d1fbb3c21c8c12cba112c840e70802fc81606fe23b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e729dc6c1ff1db46cba68feeb0bd017cf09049a1a65b7e908b54cbcf398851ecb04c4ee5dae8ee35244061638e85c1314dcee9cfa458026c30c7fe27543689ee
|
|
7
|
+
data.tar.gz: ea9d7aa704da50ff2cb00ecd254888dfb613e27d65a3c2e72bf5f6330f458060417da18f7c84f56902b3d53ea77c89d98a71837d33dafe2cbc0b6b03fb2d9cc5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.17.6 — 2026-04-10
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- **Silence Async warning on handshake timeout.** `spawn_connection`
|
|
8
|
+
now rescues `Async::TimeoutError` so a timed-out ZMTP handshake
|
|
9
|
+
doesn't emit an "unhandled exception" warning from the Async task.
|
|
10
|
+
|
|
3
11
|
## 0.17.5 — 2026-04-10
|
|
4
12
|
|
|
5
13
|
### Fixed
|
data/lib/omq/engine.rb
CHANGED
|
@@ -479,8 +479,8 @@ module OMQ
|
|
|
479
479
|
# socket barrier stopped — cascade teardown
|
|
480
480
|
rescue Async::Queue::ClosedError
|
|
481
481
|
# connection dropped during drain — message re-staged
|
|
482
|
-
rescue Protocol::ZMTP::Error, *CONNECTION_LOST
|
|
483
|
-
# handshake failed
|
|
482
|
+
rescue Protocol::ZMTP::Error, *CONNECTION_LOST, Async::TimeoutError
|
|
483
|
+
# handshake failed, connection lost, or handshake timed out
|
|
484
484
|
ensure
|
|
485
485
|
lifecycle&.close!
|
|
486
486
|
end
|
data/lib/omq/version.rb
CHANGED