job.update is not available in sandbox processor
Created by: MrNghia123
I followed the README.md to create a sandbox processor
// processor.js
module.exports = function(job){
// Do some heavy work
job.update(newJobData); <= error here
return Promise.resolve(result);
}
When I move back the processor to the same process, job.update works fine