From 3cf12b3ea7e9a262f87389fc9e71fdf4850701be Mon Sep 17 00:00:00 2001 From: congqixia Date: Thu, 16 Dec 2021 09:21:24 +0800 Subject: [PATCH] Remove zere len slice declaration in flow_graph.go (#13474) Signed-off-by: Congqi Xia --- internal/util/flowgraph/flow_graph.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/util/flowgraph/flow_graph.go b/internal/util/flowgraph/flow_graph.go index a77a76ffba..170050c3f5 100644 --- a/internal/util/flowgraph/flow_graph.go +++ b/internal/util/flowgraph/flow_graph.go @@ -29,7 +29,6 @@ func (fg *TimeTickedFlowGraph) AddNode(node Node) { nodeName := node.Name() nodeCtx := nodeCtx{ node: node, - inputChannels: make([]chan Msg, 0), downstreamInputChanIdx: make(map[string]int), closeCh: make(chan struct{}), }