Initial release
[websub-hub] / src / db / postgres / sql / topic-attempts-increment.sql
1 --
2 UPDATE topic SET
3 content_fetch_attempts_since_success = content_fetch_attempts_since_success + 1,
4 content_fetch_next_attempt = now() + ($(nextAttemptDelaySeconds) * INTERVAL '1 second')
5 WHERE
6 id = $(topicId)