From 4b6a1c59020bc6f222d641f0e8331cc6dbfbab9d Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Tue, 24 May 2022 22:55:27 -0400 Subject: [PATCH] fixed incorrect watchdog call --- supervisor/session/plc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/session/plc.lua b/supervisor/session/plc.lua index bf79f23..5279208 100644 --- a/supervisor/session/plc.lua +++ b/supervisor/session/plc.lua @@ -204,7 +204,7 @@ plc.new_session = function (id, for_reactor, in_queue, out_queue) -- mark this PLC session as closed, stop watchdog local _close = function () - self.rtu_conn_watchdog.cancel() + self.plc_conn_watchdog.cancel() self.connected = false end