8753ed97fd7281de69036b4071e9bb54d4c08808
[websub-hub] / subscription-delivery-failure.sql
1 --
2 UPDATE subscription SET
3 delivery_attempts_since_success = delivery_attempts_since_success + 1,
4 delivery_next_attempt = strftime('%s', 'now') + :nextAttemptDelaySeconds
5 WHERE
6 topic_id = :topicId AND callback = :callback