From 5278169f43197f4f85baa95066d3b9e0fc083290 Mon Sep 17 00:00:00 2001 From: andronache Date: Fri, 14 May 2021 16:27:55 +0300 Subject: [PATCH] Fixed cover test in services --- services/ees.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/ees.go b/services/ees.go index 29f744d3a..695190113 100644 --- a/services/ees.go +++ b/services/ees.go @@ -95,7 +95,7 @@ func (es *EventExporterService) Shutdown() (err error) { defer es.Unlock() close(es.stopChan) es.eeS.Shutdown() - //es.eeS = nil + es.eeS = nil //<-es.intConnChan return }