Initial release
[websub-hub] / src / db / postgres / sql / subscription-delivery-failure.sql
1 --
2 UPDATE subscription SET
3 delivery_attempts_since_success = delivery_attempts_since_success + 1,
4 delivery_next_attempt = now() + ($(nextAttemptDelaySeconds) * INTERVAL '1 second')
5 WHERE
6 topic_id = $(topicId) AND callback = $(callback)