SAP-archive / cloud-function-nodejs-samples

SAP Cloud Platform Functions samples written in Node.JS
15 stars 9 forks source link

faas-sdk init - starts with broken code #17

Open piejanssens opened 3 years ago

piejanssens commented 3 years ago

In the index.js

module.exports = function(event, context) {
    const rv = context.getSecretValueJSON('my-new-sec', 'rv.json');
    return rv.Info.Success;
};

has to be changed to this

module.exports = async function(event, context) {
    const rv = await context.getSecretValueJSON('my-new-sec', 'rv.json');
    return rv.Info.Success;
};