The Big Three Oh 👀
Major Changes
- Auto retry behavior is no longer a custom implementation, and relies on Google Pubsub's built in mechanism.
The behavior is opt-in, you need to setup your config like so:
Hanami::Events::CloudPubsub.configure do |config|
config.auto_retry.enabled = true
config.auto_retry.dead_letter_topic_name = 'my-dead-letter-topic-name' # will be auto created
end
- Require Ruby >= 2.5 breaking!