0

We created a function in AWS Lambda using Node v4.3. Later we upgraded the function to Node v8.10. When I just update the runtime of the function, it updates the runtime fine and I can execute the code just fine without errors.

It that all needed to upgrade from Node.js v4.3 to Node.js v8.10?

I used the following command:

aws lambda update-function-configuration --function-name functionname --runtime nodejs8.10

Is this a clean way to perform an upgrade of the runtime version of Node.js in Lambda or am I missing something?

1 Answer 1

2

Yes, normally that is all that is needed. The key is testing to ensure nothing breaks. You can also verify via the GUI that the function is using the new runtime.

Sign up to request clarification or add additional context in comments.

1 Comment

I will keep posted if I see any trouble.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.