summaryrefslogtreecommitdiffstats
path: root/scripts/timerdb-info.py
diff options
context:
space:
mode:
authorLibor Peltan <libor.peltan@nic.cz>2019-04-24 11:28:42 +0200
committerDaniel Salzman <daniel.salzman@nic.cz>2019-09-05 09:00:00 +0200
commitf5270348c4ee7a63a9a77a4903851f366cac519b (patch)
treeb4daf7e3daa18bbd8666eff67af3382074ee5197 /scripts/timerdb-info.py
parentknot: unify DS-related event terminology (diff)
downloadknot-f5270348c4ee7a63a9a77a4903851f366cac519b.tar.xz
knot-f5270348c4ee7a63a9a77a4903851f366cac519b.zip
knot: add ds-push event to zone timers
Diffstat (limited to 'scripts/timerdb-info.py')
-rwxr-xr-xscripts/timerdb-info.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/timerdb-info.py b/scripts/timerdb-info.py
index 26eb079c8..6a7cd3610 100755
--- a/scripts/timerdb-info.py
+++ b/scripts/timerdb-info.py
@@ -37,8 +37,10 @@ class TimerDBInfo:
0x82: ("last_refresh", cls.format_timestamp),
0x83: ("next_refresh", cls.format_timestamp),
# knot >= 2.6
- 0x84: ("last_resalt", cls.format_timestamp),
- 0x85: ("next_parent_ds_q", cls.format_timestamp),
+ 0x84: ("last_resalt", cls.format_timestamp),
+ 0x85: ("next_ds_check", cls.format_timestamp),
+ # knot >= 2.8
+ 0x86: ("next_ds_push", cls.format_timestamp),
}
if id in timers:
return (timers[id][0], timers[id][1](value))