sidekiq-bus 2.0.0 → 2.0.1
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 +5 -0
- data/lib/sidekiq_bus/adapter.rb +7 -1
- data/lib/sidekiq_bus/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: 0da453f37ecc8a2e723141addde6e5aaf3ce1d4700c2a59466be7bea7f9ecf7e
|
4
|
+
data.tar.gz: a6b33185a00dc730a9d1ca79f23d172259c6aa6986630d8eac988b53b8c6d482
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 460ee341f284a81380198e8ad602112eb5c7a9639351dcd3fc1207f2949d8950baae787d140bbd6f028211f2ab3133a7984d5e319ca17cd96834579287232fce
|
7
|
+
data.tar.gz: a6f1c75eab485b6737322daa3cfeb21e61f38c60f6513350fb7e51e1fbd188e851632b8c074daa85e80628d3591f6928945bdf5d53005a828c8cae2ee3c9aa35
|
data/CHANGELOG.md
CHANGED
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
8
8
|
|
9
9
|
### Changed
|
10
10
|
|
11
|
+
## [2.0.0] - 2025-06-25
|
12
|
+
|
13
|
+
### Fixed
|
14
|
+
- Properly installs the QueueBus heartbeat when SidekiqSchedule is not run in dynamic mode.
|
15
|
+
|
11
16
|
## [2.0.0] - 2025-06-17
|
12
17
|
|
13
18
|
- [BREAKING] Sidekiq major version now targets 7.X
|
data/lib/sidekiq_bus/adapter.rb
CHANGED
@@ -67,7 +67,13 @@ module QueueBus
|
|
67
67
|
)
|
68
68
|
|
69
69
|
# If dynamic is enabled, this will propagate through a different mechanism
|
70
|
-
|
70
|
+
unless ::Sidekiq::Scheduler.instance.dynamic
|
71
|
+
# despite the docs for SidekiqScheduler, the above entry doesn't hit the memory store until we reload from
|
72
|
+
# the redis store:
|
73
|
+
::Sidekiq.reload_schedule!
|
74
|
+
# this then allows the updated schedule to be applied:
|
75
|
+
SidekiqScheduler::Scheduler.instance.reload_schedule!
|
76
|
+
end
|
71
77
|
end
|
72
78
|
end
|
73
79
|
end
|
data/lib/sidekiq_bus/version.rb
CHANGED