We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7872fe9 commit 3fd9c31Copy full SHA for 3fd9c31
examples/RemoteJobs/functions.js
@@ -60,7 +60,7 @@ async function submitRemoteJob(ins, outs, context, cb) {
60
}
61
62
// "submit" job (start the handler process)
63
- var proc = spawn(cmd, ['../../../hyperflow-job-executor/handler.js', context.taskId, context.redis_url], {shell: true});
+ var proc = spawn(cmd, ['../../../hyperflow-job-executor/jobexec.js', context.taskId, context.redis_url], {shell: true});
64
65
proc.stderr.on('data', function(data) {
66
logger.debug(data.toString());
0 commit comments