From 00a37b6289a40ed886dc187a37f95caa8aaff91f Mon Sep 17 00:00:00 2001 From: James Shubin Date: Mon, 7 Aug 2023 22:59:17 -0400 Subject: [PATCH] engine: resources: config_etcd: Fix missing return Woops! --- engine/resources/config_etcd.go | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/resources/config_etcd.go b/engine/resources/config_etcd.go index 4c06bd01..f3eb8a1b 100644 --- a/engine/resources/config_etcd.go +++ b/engine/resources/config_etcd.go @@ -121,6 +121,7 @@ Loop: // pass through and send an event case <-ctx.Done(): // closed by the engine to signal shutdown + return nil } obj.init.Event() // notify engine of an event (this can block)