Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (16 loc) · 1.03 KB

tip161.md

File metadata and controls

24 lines (16 loc) · 1.03 KB
type title excerpt tags date
post
Tip 161 - Change the Azure Function runtime version after Deployment
Learn how to use change the azure function runtime version after deployment
Serverless
2018-10-01 10:00:00 -0700

::: tip :bulb: Learn more : Azure Functions Documentation. :::

Change the Azure Function runtime version after Deployment

If you have used Azure Functions since the beginning, then chances are you've started with a 1.x runtime. Since 2.x is out, you may want to upgrade to it but will be greeted with the following message:

This helps protect users from breaking their Azure Function. As v1 and v2 runtimes are not meant to be interchanged.

If you still want to do this, then you can simply change the FUNCTIONS_EXTENSION_VERSION App Setting to ~1 or ~2 to target the runtime that you want.