This repository was archived by the owner on Feb 8, 2019. It is now read-only.

Description
Hi I'm experiencing problems with the .apply_asynch method in the helper.py line 20.
If I leave the .apply_asynch on no notifications are sent. Have tried to remove asynch by replacing the line:
send_notifications.apply_async((notification.id,) ,eta=notification.send_at)
with
send_notifications(notification.id)
This works and I'm then able to send notifications.
Problem is then off-course that only the first configured notification is sent due to the code being synchronous. Has anybody encountered the same issues?
Really like the functionality of Openduty and to have a open source and free alternative to the expensive pagerduty etc. Would be really nice if we could get a more active community up and running around the repo and maybe port the code to python 3?