462 questions
0
votes
0
answers
166
views
Azure function warning message as We've noticed that your function app (**func-xyz**) is running on an older version of the Azure Functions host
The Azure function has 3 different environment - Dev, Test and Prod.
The Dev and Test did not shows the warning given below and only Prod showed the warning.
When I analyze, I found Prod is not build ...
0
votes
2
answers
121
views
How to problem-solve Octokit crashing Azure Typescript Function App
I have an Azure Function App:
host.json bundle version:
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[4.0.0, 5.0....
0
votes
2
answers
248
views
Azure function topic output binding - set custom properties
I am trying to use Azure function output bindings to send message to a service bus topic having one subscription
Following piece of code is doing the job but I am not able to set
Custom Properties
...
1
vote
1
answer
187
views
How do you modify the serialization options for Azure Functions v4 isolated?
Background problem:
I have a document POCO that I would like to use with the CosmosDbOutput binding extension (latest, v4).
I prefer to have my POCO property names in PascaLCase, and my Cosmos / Json ...
0
votes
1
answer
342
views
Missing `AspNetCore.Routing` assembly after migrating to .NET 8 InProcess Azure function (service bus trigger) but it works locally
I working on migrating Azure function app (servicebus trigger) from .NET 4.8 to .NET 8 which is working in my local as expected without any errors. When I deploy the function app to Azure Portal I am ...
1
vote
1
answer
947
views
Configure the entry point script for an Azure function
I am using a Docker image as my function app container and one thing I want to configure is the path to the entry point of the function app. It is function_app.py in v2 programming model. I am ...
2
votes
1
answer
832
views
Azure Functions dynamicConcurrencyEnabled setting doesn't work
Our Azure Functions are using runtime version 4, I've upgraded Microsoft.Azure.WebJobs.Extensions.Storage to 5.3.1 as required to be able to utilise dynamic concurrency.
When I add enable dynamic ...
0
votes
1
answer
1k
views
Error [ERR_MODULE_NOT_FOUND]: Worker was unable to load entry point "dist/src/functions/trigger.js"
I am trying to create an Azure Function with typescript. I am fairly new to both. I followed the docs and create one Azure function using the steps mentioned in the Azure Docs.
Docs: [Azure function ...
0
votes
1
answer
167
views
Azure function :error executing function Microsoft.Azure.WebJobs.Host.Could not create an instance of type Microsoft.AspNetCore.Http.HttpRequest
H All ,
Getting below error while sending request to azure function from a web app . all hosted local Visual studio 2022
mscorlib: Exception while executing function: FuncToQ. Microsoft.Azure.WebJobs....
0
votes
1
answer
127
views
Authorization issue in Azure Function (InProcess) .Net 6.0, anyone used nuget package DarkLoop.Azure.Functions.Authorization.InProcess/4.1.0
I have azure function developed using .Net 6.0 InProcess mode. I have used below code for Authentication but its not working now with lastest runtime on azure portal.
Azure functions are not loading ...
0
votes
1
answer
957
views
Azure Function v2 environment variables
When running the Azure Function locally, I would like the environment to be set to 'local' instead of Development. How would I make that change?
Microsoft info: https://learn.microsoft.com/en-us/...
0
votes
1
answer
275
views
Timeout HttpClient inside AzureFunction
I have here a piece of code that calls a different api inside of azure functions. that request takes a while if it takes longer than 4 minutes the client will timeout, not the functions itself. Here ...
0
votes
1
answer
2k
views
Updating Stack Settings for Azure Functions using an ARM Template or Bicep file
I am updating an Azure Functions project from .NET 7 to .NET 8 and it is not picking up any of the HTTP Handlers in the Azure Portal when it previously would when targeting .NET 7.
I added the ...
1
vote
2
answers
186
views
Why does my Azure Function disobey env var logging settings but respect host.json?
I added logging through opentelemetry and now I am getting duplicated entries of logs as they are sent through both Function's handler and opentelemetry handler.
I want to disable Function logging as ...
0
votes
1
answer
695
views
How to Debug Multiple project Azure Functions Python V2 in VSCode
I have created 2 Python (V2 Programming model) Azure Functions in Vs Code and used a workspace. When I click F5 or start debugging, only the first project session starts debugging, but not the second. ...
9
votes
3
answers
8k
views
Error CS1061: 'HostBuilder' does not contain a definition for 'ConfigureFunctionsWebApplication'
I have just created a new Azure Functions project with a Queue Trigger, straight out of the box using the following tech stack, and it doesn't build, and returns an error stating that " Error ...
0
votes
1
answer
298
views
Azure java function : No HTTP triggers found when deploying
I just wrote a new function with java runtime 17. Locally, I am able to run the azure function but the deployment is giving "No HTTP triggers found.". This started happening today. It was ...
0
votes
2
answers
392
views
Azure functions locally execute is throwing runtime exception
While trying to locally run azure function in Microsoft Visual Studio Enterprise 2022 edition. Initially get popup message showing message that
"The debugger is trying to locating source file. ...
0
votes
1
answer
426
views
Request.host returns `localhost` in Azure Functions using the worker model 'dotnet-isolated' and the ASP.NET Core integration
I am trying to convert an Azure Function app from the worker model InProcess to Isolated Process. For this I have decided to use the aspnet-core-integration, so my HttpTrigger takes in Microsoft....
0
votes
1
answer
356
views
Unable to update web settings for Function App
I updated my function app from Function runtime v3, .NET core 3.1 to Function runtime v4 and .NET 6. I am encountering the following error every time I publish it. Everything still works though. If I ...
1
vote
1
answer
3k
views
How to secure Azure Functions with Azure Keyvault
I'm currently writing a .NET 7 isolated Azure Function. I want to configure the function and its callers to use Azure Key Vault.
I've got the key vault working, everything is connected and the keys ...
1
vote
1
answer
473
views
Add a local machine as an Azure Function Worker
I have an azure function that is compute intensive. While I like the ability that azure functions has to scale dynamically using Azure cloud resources, I'd also like to be able to "Bring my own ...
0
votes
1
answer
228
views
Azure Functions with Python Runtime v2: Issues with Libraries (gcc, libpq) on Consumption-Based Model
Hello Stack Overflow community,
We are working on an application that uses Azure Functions with the Python runtime v2 model to interact with a PostgreSQL database. Our functions require specific ...
1
vote
1
answer
3k
views
Azure Functions "Microsoft.Azure.WebJobs.Script: Error building configuration in an external startup class. System.Net.Http"
I am migrating an Azure Functions application from Runtime v3 to v4. The functions app includes Durable Functions.
Migrating the code was straight forward and I had no issues running locally. However, ...
0
votes
2
answers
368
views
Upstream Azure SignalR function issues Could not load file or assembly Microsoft.Extensions.Options runtime exception
Note: This issue is not duplicate despite the title reads similarly.
The following upstream signalR trigger function has been working well until we upgraded the NuGet packages to the latest versions.
[...