fix merge output; support error to stdout

This commit is contained in:
wanglei.w
2021-06-25 18:54:51 +08:00
parent ea7295fb23
commit 6c40f6e9bb
4 changed files with 21 additions and 5 deletions

View File

@@ -260,7 +260,7 @@ func (n *Node) GetFilter(outgoingEdges []DagEdge) string {
if n.name == "split" || n.name == "asplit" {
args = []string{fmt.Sprintf("%d", len(outgoingEdges))}
}
args = Args(args).EscapeWith("\\'=:")
// args = Args(args).EscapeWith("\\'=:")
for _, k := range kwargs.EscapeWith("\\'=:").SortedKeys() {
v := getString(kwargs[k])
if v != "" {