Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
57 views

We had this problem when using AZ FA running C# in combination with Microsoft CRM. The solution we found: the names of the Function Apps were too long, returning this error: A collision for Host ID '...
Frode Lien's user avatar
0 votes
1 answer
109 views

I’ve created a basic timer_trigger Azure Function using Visual Studio Code using Python. It works perfectly in my local environment. However, after deploying it to Azure, the function does not run at ...
Afaq Bukhari.'s user avatar
0 votes
0 answers
112 views

We have a Logic App Standard (stateful) workflow and an Azure Function (Isolated, .NET 8) performing the same business logic. Business Logic Overview: Fetch data from an external API (approx. 8,000 ...
Deepak Shaw's user avatar
0 votes
1 answer
153 views

I am new to azure functions.I have written in python I am using blob Trigger but it gets stuck at Host lock lease acquired by instance ID '000000000000000000000000055662B6'. some forums say init.py is ...
academy_courses2021's user avatar
0 votes
1 answer
102 views

I am running multiple C# Azure Functions in different instances of multi root projects, which have multiple libraries which feed a small number of projects which I all run manually & separately to ...
EnenDaveyBoy's user avatar
1 vote
2 answers
159 views

I am building a python function. When I run it locally, everything works as expected. When I try to deploy it (using GitHub Actions), the deployment is successful, but the function can not be started, ...
romtecmax's user avatar
0 votes
0 answers
162 views

We have recently ported some webhook handling code from a .NET Framework based ASP.NET API, to Azure Functions, using HttpTrigger. We chose to put this Functions app inside a Flex Consumption App ...
Ryan Eastabrook's user avatar
0 votes
1 answer
102 views

I have a singleton class to instance the connection to az cosmos DB functions/cosmos_client.py from azure.cosmos import CosmosClient, exceptions import threading import json import os class ...
user30227677's user avatar
0 votes
1 answer
145 views

I was investigating some issue regarding my timers not firing, and I noticed in my Function App activity log these "List" errors: "No route registered for '/api/functions/...
Shahin Dohan's user avatar
  • 7,002
0 votes
1 answer
215 views

Good morning all Was hoping someone may be able to shed some light, or even just know where Microsoft publishes their release notes for their Azure Function App Runtimes We tried to go live with a new ...
vrghost's user avatar
  • 1,244
0 votes
0 answers
157 views

I'm trying to run my Azure Function App locally, but it fails to start. It's trying to connect with the azure eventhub I checked the test-netconnection for the iothub and the tcptestsucceeded is true ...
devram's user avatar
  • 155
-2 votes
1 answer
135 views

I am trying to use PowerShell to deploy my Function App, but I encountered the following warning: App settings have been redacted. Use 'az webapp/logicapp/functionapp config appsettings list' to view. ...
Steve Lee's user avatar
2 votes
1 answer
300 views

When deploying an Azure function, I get the error: [ValidationStep] starting. [AppSettingValidation] starting. [DeploymentStorageValidation] starting. functionAppConfig > deployment > storage is ...
Phyxx's user avatar
  • 16.2k
-2 votes
1 answer
66 views

I am trying to count the total no: of files uploaded to Azure Functions (Python). Tried uploading multiple files via postman but the AZ Func always reads only the first file and count is always 1. Why ...
Svj's user avatar
  • 639
1 vote
1 answer
46 views

How can I instantiate an Azure function in e.g. integration tests through dependency injection? Consider the following function: public class CheckApplications(IGovernanceService governanceService, ...
Shuzheng's user avatar
  • 14.6k
0 votes
1 answer
385 views

I have set up the identity provider for my Function App. When I access the function URL: https://myfunc-dev-we-01.azurewebsites.net/api/http_trigger it correctly redirects me to the Microsoft ...
play_something_good's user avatar
0 votes
1 answer
112 views

I'm trying to add authentication to my Azure Function App before allowing requests to be processed. To avoid handling tokenization manually, I attempted to configure the Identity Provider for my ...
play_something_good's user avatar
0 votes
1 answer
78 views

I have written a python method to form a pandas df and upsert it into sqlserver. This method works perfectly fine when I try to execute the python file alone. But it throws collation exception when I ...
Ramaraju.d's user avatar
  • 1,365
1 vote
1 answer
216 views

Just in the same way you can use the launchSettings.json in other project types to then specify what appsettings file you would like to include, I was wondering if there was a way to do this with ...
kylescudder's user avatar
0 votes
0 answers
50 views

I am trying to create a Azure function app Kafka trigger which starts reading messages from a given offset. I should be able to change the offset and the trigger should start reading messages from the ...
Appu Mistri's user avatar
1 vote
1 answer
221 views

I have an Azure Functions App v4, running as dotnet-isolated. I am trying to simplify my JWT authorization code by using a custom attribute and custom middleware that will check the token. However, I'...
John McArthur's user avatar
0 votes
1 answer
153 views

main issue to have context: the function isnt recognized by the function app and listed in the functions list so i have a function app which should include a timer triggered python function which i ...
confusedJunior's user avatar
0 votes
1 answer
59 views

I have a Function app running locally in VS Code on my DEV Desktop. It needs to use the key vault command (Get-AzKeyVaultSecret). The only way I can get the FunctionApp to start is to remove the ...
Philip Woodring's user avatar
0 votes
1 answer
192 views

I am trying to submit a command job in azure ml: ml_client.create_or_update(training_job) But getting below error: MlException: 1) At least one required parameter is missing Details: (x) Input ...
Karthik S's user avatar
  • 11.6k
2 votes
0 answers
72 views

I need to format the table of contents (TOC) in multiple Word documents daily. I'm using Power Automate with OpenXML (C#) to add the TOC. However, the code is inserting a TOC but not update it ...
renjeesh office's user avatar

1
3 4
5
6 7
362