Closed marcoroest closed 12 years ago
The third parameter to nodeio.start()
is either true
to capture output in the callback or false
(default) to use the output
method you've defined.
Try this
nodeio.start(new nodeio.Job(jobOptions, job), function(err) {
if (err) throw err;
});
Cool i'll give that a try. Thanks for the quick response and this awesome project :)
Hello,
I'm pretty new to node.js and node.io (I've been looking at it for a day or 2 now), so please bear with me.
It seems that when I'm running my script the output phase is skipped. I'am able to console.log() to result when the job is done though.
This is my code:
I've also tried to use a function as output, this way, but still nothing.
I'm running the latest version of node.js and node.io
Any help would be appreciated greatly.