Questions tagged [azure-function-app]

A function app is the container that hosts the execution of individual functions in the serverless framework Azure Functions.

A function app is the container that hosts the execution of individual functions in the framework.

Create a function app from the Azure portal

574 questions
4
votes
1 answer

Azure Function v2 Web Deploy experienced a connection problem with the server and had to terminate the connection

When trying to publish a V2 function from Visual Studio I'm getting a publish error: Publish has encountered an error. Publishing failed. The messages from the Output windows are: Web deployment task failed. (Web Deploy experienced a connection…
Lymedo
  • 576
  • 9
  • 21
3
votes
1 answer

Azure Function Host to give a Message in case of invalid URI path:

Azure Function Host to give a Message in case of invalid URI path: Hi, I'm using an Azure Function and testing it through Postman. My requirement is, when we pass the invalid URI path but the correct Host... we are getting Status: 404 Not Found. But…
3
votes
0 answers

Azure Function App with .NET Framework + MARS (Multiple Active Record Sets)

We have a v1 Azure Function App. It has to be v1 because our client insists on .NET Framework as their organisation has familiarity with Framework and has not migrated to .NET Core. Our architect has stipulated that MARS (Multiple Active Record…
3
votes
2 answers

python packages are not installed throughCI/CD pipelines,import error , package not found

Introduction and Explaination i am trying deploy my code to azure function app (linux based , python code ) through CI.CD pipelines. at first it worked fine but after few deployments, i am import error , library not found . and when i check the…
3
votes
3 answers

Deploying Azure Function with DevOps

I've build an Azure function. I can deploy it from Visual Studio directly (right click on project, then Publish) to my Azure FunctionApps without any problems. However, when I try to use Azure DevOps to build and deploy it, I receive the following…
Franky
  • 1,262
  • 2
  • 16
  • 31
3
votes
1 answer

Azure function for python is unreachable

I am getting the below error in the Azure Function for Python Please see the below screenshot Whenever I am trying to open the azure function python on the portal then I got the above error. Let me know if anyone has any idea regarding this error.
3
votes
0 answers

How to prevent Azure Function v3 from loading same assembly multiple times?

I have an Azure v3 Function application (.NET Core 3.1 - Consumption plan) which has multiple Service Bus-triggered functions. Each function calls a method in different Event Handling Classes passing a message entity as a parameter. Both the event…
Adolfo Perez
  • 2,834
  • 4
  • 41
  • 61
3
votes
1 answer

PowerShell unable to find type of exception in try/catch block

I'm running a PowerShell Function App (~3) which uses the Az PowerShell module to manage a Storage Account. If any of the operations I carry out result in an error, I am unable to check for specific types in a try/catch block. It is important to…
David Gard
  • 11,225
  • 36
  • 115
  • 227
3
votes
3 answers

What is different azure function app and app service plan?

What is different azure function app and app service plan ? I think; Function app is a core layer - where hosted code and execute App service plan is higher layer of function app - it can be covering function app. For example, it can cover…
Thanh Nguyen Van
  • 10,292
  • 6
  • 35
  • 53
3
votes
1 answer

Azure Functions scaling and concurrency using Queue triggers and functionAppScaleLimit on the Consumption Plan

I have an Azure Function app on the Linux Consumption Plan that has two queue triggers. Both queue triggers have the batchSize parameter set to 1 because they can both use about 500 MB of memory each and I don't want to exceed the 1.5GB memory…
ddx
  • 469
  • 2
  • 9
  • 27
3
votes
1 answer

Bot Framework Composer - Publish profile

I'm using the Bot Framework Composer to create a bot and now I'm trying to publish is to an Azure Function App. The piece I'm lost on is where to get the "accessToken" for authenticating the Function App. I've tried to do this via the Function App >…
3
votes
1 answer

Unable to connect to Azure Function App after integrating into VNET

Problem Outline Azure Function App can not be accessed once it is integrated into a VNET and WEBSITE_VNET_ROUTE_ALL is set to 1. This is required so that the Function App can securely connect to SQL without making the SQL publicly…
3
votes
1 answer

Authorize Azure Function Event Grid Trigger through Azure AD B2C

I have an Azure Event Grid Trigger Inside my Function's App. The Function is subscribed to Event Grid Topic through an Event Subscription. The Function works perfectly and is triggered when I have no Authentication Configured inside the…
3
votes
3 answers

How do you set the java version while creating Azure Function App using Terraform?

In the Azure Portal I can set the Java Version like follows: portal image In the terraform config file I can only set the Azure Function version using: resource "azurerm_function_app" "function-app" { name = "test" location…
3
votes
2 answers

Azure DevOps CI/CD Deploy Web or Function App changing the values in appsettings in YAML Pipelines

There has been some confusion internally around how to automate appsettings for Function Apps and Web Apps recently with some of our deployments, and checking around there appears to be a bewildering amount of options that look like they are doing…