We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.

Melody • 4 years ago

Did you mean And the return value from job() is stored in the message variable. instead of return value from test()...

Anonymous • 2 years ago

Don't just comment out the existing .then code, they still think you are having .thens'.

async function job(result, database, errorManager) {
try {
let id = await result;
let info = await database.get(id);
return info.name;
} catch (error) {
errorManager.notify(error);
throw (error);
}
}

module.exports = job;

Anonymous • 1 year ago

thanks