Skip to content

Commit be53769

Browse files
committed
Acrolinx
1 parent 26291b7 commit be53769

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/azure-functions/update-java-versions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ zone_pivot_groups: app-service-platform-windows-linux
88

99
# Update Java versions in Azure Functions
1010

11-
The Azure Functions supports specific versions of Java. This support changes based on the support or Java versions. As these supported versions change, you need to update your Java function apps. You may also want to update your apps to take advantage of features in newer version of Java that are supported by Functions. For more information, see [Supported versions](functions-reference-java.md#supported-versions) in the Java developer guide.
11+
The Azure Functions supports specific versions of Java. This support changes based on the support or Java versions. As these supported versions change, you need to update your Java function apps. You may also want to update your apps to take advantage of features in newer supported version of Java. For more information, see [Supported versions](functions-reference-java.md#supported-versions) in the Java developer guide.
1212

1313
:::zone pivot="platform-windows"
14-
The way that you update your function app depends on whether you run on Windows or Linux. This is the Windows version. Choose your OS at the [top](#top) of the article.
14+
The way that you update your function app depends on whether you run on Windows or Linux. This version is for Windows. Choose your OS at the [top](#top) of the article.
1515
:::zone-end
1616
:::zone pivot="platform-linux"
17-
The way that you update your function app depends on whether you run on Windows or Linux. This is the Linux version. Choose your OS at the [top](#top) of the article.
17+
The way that you update your function app depends on whether you run on Windows or Linux. This version is for Linux. Choose your OS at the [top](#top) of the article.
1818
:::zone-end
1919

2020
## Prepare to update
@@ -23,11 +23,11 @@ Before you update the Java version in Azure, you should complete these tasks:
2323

2424
### 1. Verify your functions locally
2525

26-
Before upgrading the Java version used by your function app in Azure, make sure that you have fully tested and verified your function code locally on the new target version of Java. Examples in this article assume you are updating to Java 17.
26+
Before upgrading the Java version used by your function app in Azure, make sure that you have fully tested and verified your function code locally on the new target version of Java. Examples in this article assume you're updating to Java 17.
2727

2828
### 2. Move to the latest Functions runtime
2929

30-
Before updating your Java version, make sure your function app is running on the latest version of the Functions runtime (version 4.x). You can do this either by using Azure CLI or in the Azure portal.
30+
Before updating your Java version, make sure your function app is running on the latest version of the Functions runtime (version 4.x).
3131

3232
### [Azure portal](#tab/azure-portal)
3333

@@ -44,7 +44,7 @@ Use this [`az functionapp config appsettings list`](/cli/azure/functionapp/confi
4444
```azurecli
4545
az functionapp config appsettings list --name "<FUNCTION_APP_NAME>" --resource-group "<RESOURCE_GROUP_NAME>"
4646
```
47-
The runtime version is indicated by the `FUNCTIONS_EXTENSION_VERSION` setting. A value of `~4` means that your function app is already running on the latest minor version of the latest major version (4.x).
47+
The `FUNCTIONS_EXTENSION_VERSION` setting dictates the runtime version. A value of `~4` means that your function app is already running on the latest minor version of the latest major version (4.x).
4848

4949
### [Azure PowerShell](#tab/azure-powershell)
5050

@@ -54,7 +54,7 @@ The [`Get-AzFunctionAppSetting`](/powershell/module/az.functions/get-azfunctiona
5454
Get-AzFunctionAppSetting -Name <FUNCTION_APP_NAME> -ResourceGroupName <RESOURCE_GROUP_NAME>
5555
```
5656

57-
The runtime version is indicated by the `FUNCTIONS_EXTENSION_VERSION` setting. A value of `~4` means that your function app is already running on the latest minor version of the latest major version (4.x).
57+
The `FUNCTIONS_EXTENSION_VERSION` setting dictates the runtime version. A value of `~4` means that your function app is already running on the latest minor version of the latest major version (4.x).
5858

5959
---
6060

@@ -106,7 +106,7 @@ In this example, replace `<APP_NAME>` and `<RESOURCE_GROUP>` with the name of yo
106106

107107
### [Azure PowerShell](#tab/azure-powershell)
108108
:::zone pivot="platform-windows"
109-
Use the [`Update-AzFunctionAppSetting`](/powershell/module/az.functions/update-azfunctionappsetting) cmdlet to to update the `java-version` setting to `17`:
109+
Use the [`Update-AzFunctionAppSetting`](/powershell/module/az.functions/update-azfunctionappsetting) cmdlet to update the `java-version` setting to `17`:
110110

111111
```azurepowershell
112112
Update-AzFunctionAppSetting -Name <APP_NAME> -ResourceGroupName <RESOURCE_GROUP> -AppSetting @{"java-version" = "17"}

0 commit comments

Comments
 (0)