diff --git a/internal/util/flowgraph/node.go b/internal/util/flowgraph/node.go index f29e923a3e526..efb9dbbce063c 100644 --- a/internal/util/flowgraph/node.go +++ b/internal/util/flowgraph/node.go @@ -201,6 +201,11 @@ func (node *BaseNode) IsValidInMsg(in []Msg) bool { return false } + if len(in) == 0 { + // avoid printing too many logs. + return false + } + if len(in) != 1 { return false }