From d8974353d12af96fec1b75f1a41a733d3301b57d Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@elixxir.ioo> Date: Tue, 30 Mar 2021 09:54:59 -0700 Subject: [PATCH] stopped the close of the error channel --- api/client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/api/client.go b/api/client.go index 8f316a986..2fb0ee691 100644 --- a/api/client.go +++ b/api/client.go @@ -441,7 +441,6 @@ func (c *Client) StopNetworkFollower(timeout time.Duration) error { if err != nil { return errors.WithMessage(err, "Failed to Stop the Network Follower") } - close(c.clientErrorChannel) err = c.runner.Close(timeout) if err != nil { return errors.WithMessage(err, "Failed to Stop the Network Follower") -- GitLab