From 9a9a2d018881365202ac578213b876aa500eee1a Mon Sep 17 00:00:00 2001 From: Jared O'Connell Date: Thu, 5 Oct 2023 13:11:42 -0400 Subject: [PATCH] Remove fixed TODO --- atp/client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/atp/client.go b/atp/client.go index a2f1dd1..57973db 100644 --- a/atp/client.go +++ b/atp/client.go @@ -210,7 +210,6 @@ func (c *client) Close() error { // First, close channels that could send signals to the clients // This ends the loop for runID, signalChannel := range c.runningSignalReceiveLoops { - // TODO: Test why commenting this out results in a deadlock instead of just the steps finishing when they're supposed to. c.logger.Infof("Closing signal channel for run ID '%s'", runID) close(signalChannel) }