18,062 questions
0
votes
0
answers
57
views
Azure Function App 502 - Web server received an invalid response while acting as a gateway or proxy server
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 '...
0
votes
1
answer
109
views
Azure Timer Trigger Function Not Executing After Deployment – Error 500 on Portal Test
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 ...
0
votes
0
answers
112
views
Noticed a significant difference in execution Azure Function vs Azure Logic App workflow
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 ...
0
votes
1
answer
153
views
Azure Function Blob Trigger using Python getting stuck while running at Host lock lease acquired by instance ID '000000000000000000000000055662B6' [closed]
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 ...
0
votes
1
answer
102
views
Debugging multiple C# locally run C Azure Functions
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 ...
1
vote
2
answers
159
views
module not found 'azure-data' when deploying azure function, works locally
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, ...
0
votes
0
answers
162
views
Timeouts when calling HTTP triggered Azure Functions
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 ...
0
votes
1
answer
102
views
Handle cosmos DB connection in Function apps
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 ...
0
votes
1
answer
145
views
Mysterious "List" errors in Azure function app activity log
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/...
0
votes
1
answer
215
views
Missing libraries (libpango) in Azure Python Function App 4.1037.1.1
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 ...
0
votes
0
answers
157
views
Azure Function App Fails to Start Locally – "An existing connection was forcibly closed by the remote host"
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 ...
-2
votes
1
answer
135
views
Deploy Azure Function using CloudShell issue: App settings have been redacted
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.
...
2
votes
1
answer
300
views
Azure Functions reports storage is missing following configurations: AppSetting name set in authentication
When deploying an Azure function, I get the error:
[ValidationStep] starting.
[AppSettingValidation] starting.
[DeploymentStorageValidation] starting.
functionAppConfig > deployment > storage is ...
-2
votes
1
answer
66
views
Azure functions get multi file uploads
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 ...
1
vote
1
answer
46
views
How can I instantiate an Azure function in e.g. integration tests through dependency injection?
How can I instantiate an Azure function in e.g. integration tests through dependency injection?
Consider the following function:
public class CheckApplications(IGovernanceService governanceService, ...
0
votes
1
answer
385
views
Azure Function App using python: how to get the principal name and ID information
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 ...
0
votes
1
answer
112
views
Function app - identity provider authentication
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 ...
0
votes
1
answer
78
views
sqlAlchemy to_sql with azure function returning collation error, but work without issues if executing just the python file
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 ...
1
vote
1
answer
216
views
Using profile/environment specific local.settings.json in Azure Functions
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 ...
0
votes
0
answers
50
views
How to seek Kafka messages from a given offset using Azure Function Kafka trigger?
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 ...
1
vote
1
answer
221
views
Azure Function App with Authorization Middleware throwing 500 exception
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'...
0
votes
1
answer
153
views
function app deployed through azure devops pipeline not recognizing the function
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 ...
0
votes
1
answer
59
views
How to locally test a Function App in VS code with a module
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 ...
0
votes
1
answer
192
views
Getting (x) Input path can't be empty for jobs. error while submitting a command job in Azure ml
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 ...
2
votes
0
answers
72
views
update TOC in word document automatically online
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 ...