From 9d5a55bf58d2757a2dc049bf90c764793e1d1dbf Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Mon, 13 Feb 2023 22:14:47 -0500 Subject: [PATCH] fixed the commit just now that broke status data to coordinator --- coordinator/iocontrol.lua | 2 +- coordinator/startup.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/coordinator/iocontrol.lua b/coordinator/iocontrol.lua index eda923c..77b878e 100644 --- a/coordinator/iocontrol.lua +++ b/coordinator/iocontrol.lua @@ -417,7 +417,7 @@ function iocontrol.update_unit_statuses(statuses) local unit = io.units[i] ---@type ioctl_unit local status = statuses[i] - if type(status) ~= "table" or #status ~= 6 then + if type(status) ~= "table" or #status ~= 5 then log.debug(log_header .. "invalid status entry in unit statuses (not a table or invalid length)") return false end diff --git a/coordinator/startup.lua b/coordinator/startup.lua index 7fcd9a0..e7ed010 100644 --- a/coordinator/startup.lua +++ b/coordinator/startup.lua @@ -19,7 +19,7 @@ local iocontrol = require("coordinator.iocontrol") local renderer = require("coordinator.renderer") local sounder = require("coordinator.sounder") -local COORDINATOR_VERSION = "beta-v0.9.9" +local COORDINATOR_VERSION = "beta-v0.9.10" local print = util.print local println = util.println