For most cases it works properly, but for some cases it doesn’t trigger and there weren’t any errors in logs.
Could you tell how to catch this type of errors? Do I have to check Rabbit messages?
" All reminders are cancelled whenever you shutdown your Rasa server."
Do you happen to know how to avoid this or maybe if we can re-trigger the reminders once the server is restarted?
(sorry for the long response time). So it would be possible to do that with some custom code. For instance, when your app creates a reminder, it can save a record in a database. When the reminder is dispatched, you could save a flag that says that the reminder has been dispatched. And on server restart, it’d be possible to lookup this database for reminders that were never sent, with a date in the past.
Is this a possibility for you? Does that make sense?