Merge pull request #380 from No0Vad/retry-heartbeat-interval

Added support for a retry interval to monitors
This commit is contained in:
Louis Lam
2021-09-16 00:21:53 +08:00
committed by GitHub
6 changed files with 36 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;
ALTER TABLE monitor
ADD retry_interval INTEGER default 0 not null;
COMMIT;