From c19a58380c3cb4edd7e0f9b59d5fdf9f8de33f35 Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Mon, 2 May 2022 17:33:54 -0400 Subject: [PATCH] fixed cancel not being exposed for watchdog functions --- scada-common/util.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scada-common/util.lua b/scada-common/util.lua index bcab1b5..a226e9f 100644 --- a/scada-common/util.lua +++ b/scada-common/util.lua @@ -89,6 +89,7 @@ function new_watchdog(timeout) return { get_timer = get_timer, - feed = feed + feed = feed, + cancel = cancel } end