From b0aa4a95eaa088d90984024582babf749eb8fae7 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Mon, 4 Oct 2021 00:19:25 +0530 Subject: Revert "In pipe, pass through input keys to all expressions." This reverts commit 35bcaaa67efbe9b60e69b0f7c17acc186c74e7c3. This was not such a good idea. It is better to introduce the notion of global parameters. --- ccwl/ccwl.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm index f3ffffd..b923b4a 100644 --- a/ccwl/ccwl.scm +++ b/ccwl/ccwl.scm @@ -325,9 +325,8 @@ list of supplied input objects." ;; pipe ((pipe expressions ...) (foldn (lambda (expression input-keys steps) - (let ((child-output-keys child-steps (workflow-steps expression input-keys))) - (values (append input-keys child-output-keys) - (append steps child-steps)))) + (let ((input-keys child-steps (workflow-steps expression input-keys))) + (values input-keys (append steps child-steps)))) #'(expressions ...) input-keys (list))) -- cgit v1.2.3