question

MikhailDelly-8335 avatar image
0 Votes"
MikhailDelly-8335 asked MikhailDelly-8335 commented

Deploying v4 azure functions on .NET 6 via Visual Studio issue

I've faced up to a weird issue during deployment v4 azure functions on .NET 6 into the azure function apps.

I created a new function app in the azure
164285-image.png

And in the VS2022 (.NET 6) as well. After deployment via Visual Studio It seems that trigger integration menu doesn't work (spinner doesn't stop) and I am not able to reach the functionality to configure triggers etc.
It doesn't matter which triggers are used in functions (Http, EvendGrid...), still an issue.
164265-image.png

Obviously, it works fine on Core 3.1 and AF v3 but the same happened to existing function apps. After using cmds on the existing v3 function apps:

az functionapp config appsettings set --settings FUNCTIONS_EXTENSION_VERSION=~4 -n <APP_NAME> -g <RESOURCE_GROUP_NAME>
az functionapp config set --net-framework-version v6.0 -n <APP_NAME> -g <RESOURCE_GROUP_NAME>

the integration menu will be unreachable
!Note Also the issue isn't reproduced when the function was added manually via the azure portal but it's not a way around

The weirdest thing is that adding extension bundles fixes the issue but even adding all packages from extension bundles one by one using NuGet (.NET approach) doesn't help

*"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
"version": "[4.0.0, 5.0.0)"
}

According to the docs extension bundle approach is used in non-.NET languages which is not our case and it looks like it doesn't have an impact on extension.json file.

Did someone face up to a similar issues? If this a bug is this any way to solve this issue?



azure-functionsazure-event-hubsazure-event-grid
image.png (4.7 KiB)
image.png (18.7 KiB)
· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

@MikhailDelly-8335 , I am also facing this issue. I will check investigate this further and get back to you with an update

0 Votes 0 ·

1 Answer

MughundhanRaveendran-MSFT avatar image
1 Vote"
MughundhanRaveendran-MSFT answered MikhailDelly-8335 commented

@MikhailDelly-8335 ,

As mentioned in my comment, I also faced this issue and I had engaged the appropriate team to fix this issue. It has been fixed and its working as expected now. Please check and confirm. There were some templates that were missed during the deployment of V4 due to which the integration screen wasn't loading.

Apologies for the inconvenience caused.

· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Thank you. Confirmed, it works now

0 Votes 0 ·