Roger Bagué
Roger Bagué
Answering your question, yes, `wait_until` takes precedence over `wait` as you can see [here](https://github.com/rails/rails/blob/fe76a95b0d252a2d7c25e69498b720c96b243ea2/activejob/lib/active_job/enqueuing.rb#L50). But setting a delay on the notification brings an issue with the database delivery, which I...
Sorry, my bad. What I meant here is that the database delivery can't be delayed as it won't return the database record, I realized this after merging the PR. That...
Hi @gathuku. The error you are seeing is because the database delivery is being enqueued instead of being executed right away. Thus making this [line](https://github.com/excid3/noticed/blob/ae40f8315ee1b6404147a4e1bcd6a67175565c4f/lib/noticed/base.rb#L78) return the enqueued job (`Noticed::DeliveryMethods::Database`...