Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [azure-functions]

Azure Functions is an event-driven serverless compute platform in Azure and Azure Stack. Its open-source runtime also works on multiple destinations including Kubernetes, Azure IoT Edge, on-premises, and other clouds.

azure-functions
0 votes
1 answer
13 views

How to retrieve JSON string from the request body of POST method in Azure Functions?

From my JavaScript client, I send the JSON data using POST method fetch("https://%$%$%%$.azurewebsites.net/api/JointPose?", { method: "POST", ...
Astroboy's user avatar
0 votes
0 answers
15 views

Random and duplicate logging for Azure Functions and OpenTelemetry python

Log spamming I recently added OpenTelemetry to my azure function. The reason was because i wanted logging with custom dimensions. But when i added this, my app started spamming random logs around ...
Kanerix's user avatar
  • 91
0 votes
0 answers
21 views

Azure Function App Cannot Access the Azure SQL Database

There is an Azure Function App that has the 'system assigned identity' enabled and a 'user assigned identity' (uai) linked. The 'uai' is also created under the Azure SQL database it needs to interact ...
Ian Carrick's user avatar
0 votes
0 answers
31 views

Getting "System.IO.FileNotFoundException: Could not load file or assembly 'Azure.Core, Version=1.38.0.0" in Azure Function App

Currently, I am running a .NET 8 Azure Function app in Azure. It's a dotnet-isolated function running on a Linux App Service plan. I am getting this error when trying to run the HTTP trigger function: ...
Garran Michaels's user avatar
0 votes
0 answers
27 views

ci pipeline building an artifact for a function app contains no functions

I have a function app, I want to deploy functions into that function app I made a CI and a CD pipeline in azure devops, all of it results in no functions in the function app this is what my CI yaml ...
nevermonday's user avatar
-1 votes
1 answer
53 views

Why my Azure function app blob trigger is not working when I upload a file?

I have created a blob trigger function app with python. I also have a blob storage in my storage account. The settings (local.settings, function.json) seems ok. After running : func start and ...
Hossein Chegini's user avatar
0 votes
0 answers
20 views

VS Code Azure function error: inputStream should be at start of stream

I've developed the Azure function below, which is blob triggered and it PGP encrypts the file received in an inbound container and places the encrypted file into an outbound container. in Visual ...
user26496939's user avatar
0 votes
1 answer
45 views

How do I deploy Isolated Azure Function App to Azure with multiple artifact files?

I have upgraded my function app to .NET 8 using the isolated worker model and am trying to deploy new builds to Azure. With the change to the isolated worker model, my build artifacts now contain two ...
Matt's user avatar
  • 51
0 votes
0 answers
22 views

Azure Functions Blob Trigger Error Blob File Skipped because ETag has already been processed

I have a blob trigger azure function deployed yet it is not properly processing the blob as I continually get the following error: Blob 'File.xlsx' will be skipped for function 'blob_trigger' because ...
Thiziri's user avatar
  • 81
0 votes
0 answers
17 views

How do I run my Azure Search indexers from an Azure function?

I started out with some Java code that will run my indexers within an Azure AI Search resource. I then expose an API resource with Spring. When going to the URL http://localhost/run/indexers, the ...
ban_ana's user avatar
  • 49
0 votes
1 answer
43 views

Azure Function with Azure AI Speech network issue (WS_OPEN_ERROR_UNDERLYING_IO_OPEN_FAILED)

I'm using Azure AI Speech (previously Azure Cognitive Services), specifically the Text-to-Speech (TTS) feature in a Python Azure Function app (Linux). However, when my Function app is running and ...
Robin's user avatar
  • 177
0 votes
0 answers
22 views

Sporadically CORS Error while attempting to send the request to Azure Function: "Access to fetch at '***' has been blocked by CORS policy"

I have an Azure Functions deployed to Azure to TEST and PROD env. It is Isolated Worker model. I am sendint request while Azure Front Door. This is deployment script: resource runApiApp 'Microsoft.Web/...
Mykyta Halchenko's user avatar
0 votes
2 answers
38 views

How to hide server details(Kestrel) in response headers for Function Hosted applications in .NET8?

I'm working on an Azure Function Hosted application and I need to hide the server details from the response headers. I tried the following code, but it didn't work: .ConfigureWebHostDefaults(...
ASHWANI MAURYA's user avatar
0 votes
1 answer
33 views

How can i monitor a Function App in Azure without App insights?

I have a function app in azure and this function app runs thousands of jobs. Now at time it says the job is running and it actually hasnt ran at all or a time frame has been exceeded.I can see that on ...
Jenny's user avatar
  • 11
0 votes
1 answer
31 views

How to configure Azure Function App to process Service Bus messages in parallel?

I have created an Azure Function App and created a function from a docker image in the Azure Container Registry. The function is triggered by a new message being placed on an Azure Service Bus queue. ...
demajh's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
1113