Skip to content

Commit 81d2a49

Browse files
authored
Minor updates
1 parent b6b4c07 commit 81d2a49

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

converters/pegasus_dax.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Hypermedia workflow.
1+
/* HyperFlow engine.
22
** Converts from pegasus dax file to hyperflow workflow representation (json)
33
** Author: Bartosz Balis (2013-2018)
44
*/
@@ -154,7 +154,8 @@ function createWorkflow(dax, functionName, cb) {
154154
for (var i=0; i<wfOut.data.length; ++i) {
155155
if (wfOut.data[i].sources.length == 0) {
156156
wfOut.ins.push(i);
157-
wfOut.data[i].data = [{ }]; // uncomment to send initial signals to the workflow
157+
// the line below sends initial signals to the workflow. FIXME: add a cmd line option
158+
wfOut.data[i].data = [{ }];
158159
}
159160
if (wfOut.data[i].sinks.length == 0) {
160161
wfOut.outs.push(i);

0 commit comments

Comments
 (0)