fixed supervisor keep alive periodics timing

This commit is contained in:
Mikayla Fischler 2022-07-07 13:18:10 -04:00
parent 4b60c038f4
commit b25ebdf959
4 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ local print_ts = util.print_ts
local println_ts = util.println_ts
local PERIODICS = {
KEEP_ALIVE = 2.0
KEEP_ALIVE = 2000
}
-- coordinator supervisor session

View File

@ -33,7 +33,7 @@ plc.PLC_S_CMDS = PLC_S_CMDS
plc.PLC_S_DATA = PLC_S_DATA
local PERIODICS = {
KEEP_ALIVE = 2.0
KEEP_ALIVE = 2000
}
-- PLC supervisor session

View File

@ -39,7 +39,7 @@ rtu.RTU_S_CMDS = RTU_S_CMDS
rtu.RTU_S_DATA = RTU_S_DATA
local PERIODICS = {
KEEP_ALIVE = 2.0
KEEP_ALIVE = 2000
}
---@class rs_session_command

View File

@ -13,7 +13,7 @@ local svsessions = require("supervisor.session.svsessions")
local config = require("supervisor.config")
local supervisor = require("supervisor.supervisor")
local SUPERVISOR_VERSION = "beta-v0.5.1"
local SUPERVISOR_VERSION = "beta-v0.5.2"
local print = util.print
local println = util.println