From 0d6022f5e36b5ef7196670960f0c6ba26b4800a9 Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Tue, 11 Jul 2023 18:31:53 -0400 Subject: [PATCH] fixed always reporting failure to connect to supervisor even when inaccurate --- coordinator/startup.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coordinator/startup.lua b/coordinator/startup.lua index 0f1d30a..69f3891 100644 --- a/coordinator/startup.lua +++ b/coordinator/startup.lua @@ -22,7 +22,7 @@ local sounder = require("coordinator.sounder") local apisessions = require("coordinator.session.apisessions") -local COORDINATOR_VERSION = "v0.19.2" +local COORDINATOR_VERSION = "v0.19.3" local println = util.println local println_ts = util.println_ts @@ -362,7 +362,7 @@ local function main() -- check for termination request if event == "terminate" or ppm.should_terminate() then -- handle supervisor connection - link_failed = coord_comms.try_connect(true) + coord_comms.try_connect(true) if coord_comms.is_linked() then log_comms("terminate requested, closing supervisor connection...")