summaryrefslogtreecommitdiffstats
path: root/scripts/timerdb-info.py
diff options
context:
space:
mode:
authorLibor Peltan <libor.peltan@nic.cz>2017-09-07 12:51:57 +0200
committerLibor Peltan <libor.peltan@nic.cz>2017-09-07 12:51:57 +0200
commit4636512f7f56b42cf0ee7c67b1026630586c226f (patch)
tree03b8bbb178a90f4c68610ed134bc0add654e62c1 /scripts/timerdb-info.py
parentMerge branch 'changeset_merge_cancelout' into 'master' (diff)
downloadknot-4636512f7f56b42cf0ee7c67b1026630586c226f.tar.xz
knot-4636512f7f56b42cf0ee7c67b1026630586c226f.zip
scripts: updated timerdb-info to cover new timers
Diffstat (limited to 'scripts/timerdb-info.py')
-rwxr-xr-xscripts/timerdb-info.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/timerdb-info.py b/scripts/timerdb-info.py
index 0877c1cf2..6afa99003 100755
--- a/scripts/timerdb-info.py
+++ b/scripts/timerdb-info.py
@@ -38,6 +38,9 @@ class TimerDBInfo:
0x81: ("last_flush", cls.format_timestamp),
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),
}
if id in timers:
return (timers[id][0], timers[id][1](value))