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

I have function apps (5 of them) connected to single app service (B1 plan). For last 2 years they were working without connected storage account (do not know how exactly this is possible that they did ...
sjanisz's user avatar
  • 162
0 votes
1 answer
245 views

I have created an Azure function under consumption plan, that uses PowerShell, then inside the run.ps1, i added this code, to remove a user from all the groups assigned to the user:- and the following ...
microsoftdeveloperdesigner's user avatar
0 votes
1 answer
105 views

I have an Azure Function running under premium plan, with these settings: I am running a .NET 8.0 application which integrates with those main components: Azure SQL External API SharePoint lists I ...
microsoftdeveloperdesigner's user avatar
0 votes
2 answers
295 views

I create a new project with an Azure Function in .NET 8. In my local.settings.json file, I create a time trigger like this: { "IsEncrypted": false, "Values": { &...
erikscandola's user avatar
  • 2,956
0 votes
1 answer
396 views

I'm making a simple Azure Function that works on a blob trigger. I decided to deploy it using the CLI. I can see the function in my Azure Functions overview tab. Let me give a little bit of a context ...
anthino12's user avatar
  • 1,023
0 votes
1 answer
127 views

I'm developing an Azure Service Bus trigger function with MassTransit, and I'm getting the following error messages when the bus is injected with about 10K messages in a short time (~5 mins). The ...
Rodrigo Bengoechea's user avatar
-1 votes
2 answers
131 views

I am using Terraform to deploy both an Azure "function app" and "function" which is successful. Now in terraform i now need to get the 'deafult key' of the function - this is what ...
Ian Carrick's user avatar
0 votes
2 answers
106 views

I have a java azure function with blob triggers. We are moving from connection string based authentication to managed identity based authentication. Please find the azure function configs we have ...
Praveen's user avatar
  • 514
0 votes
1 answer
116 views

I have a C# Azure Function application deployed to Azure, with a Http Triggered function in it, with the authorization level set to Function. The function is connected to an application insights ...
GoldieLocks's user avatar
0 votes
1 answer
212 views

I'm deploying an Azure Function App (Java 17, Premium V3 plan P1v3) where: Azure Function runtime version: ~4 Function App is VNet integrated. Key-Based Authentication is disabled on the Storage ...
gcn's user avatar
  • 3
0 votes
1 answer
77 views

I am currently working on an Azure Function app. It is triggered by a storage queue. The function itself picks up the message, executes a MS Graph API call and does some small logic. I currently have ...
AndreasTC's user avatar
1 vote
0 answers
133 views

Question I want to create a scoped logger in .NET (Azure Function v4 / v5) where the scoped properties can change during function execution. Specifically, I want a property like RequestId and ...
RichioRobo's user avatar
0 votes
1 answer
183 views

I have an Linux Azure function with runtimeStack as 'DOTNET-ISOLATED|9.0'. I am using consumption plane and AzureFunctionApp@2 Azure DevOps pipeline task to deploy my code from Azure DevOps. - ...
Sibeesh Venu's user avatar
  • 22.3k
1 vote
1 answer
427 views

I have created a Dockerfile for Azure Function that build and installs playwright into container. Install all the dependency related to Playwright. I tried with Playwright official image still it was ...
JOYBOY's user avatar
  • 75
-1 votes
1 answer
182 views

Very simply! I have a function app - function_app.py, trigger.py and init.py in the root Its my first Azure Function App. if i run the two files separately, function_app.py, trigger.py, they both ...
Dave's user avatar
  • 15
0 votes
1 answer
149 views

I have an azure function and i enable its managed identity , and i got a principle id "1***1":- Now i tried to run this command based on this official documentation from Microsoft https://...
microsoftdeveloperdesigner's user avatar
1 vote
0 answers
89 views

For one of our clients, based on the following blog post, we had to setup a Docker based Azure Function to run puppeteer-sharp. We are trying to run that specific process with the following ...
vpreim's user avatar
  • 21
0 votes
0 answers
112 views

I am experiencing an odd problem that I cannot find any solution for the last week. Wednesday 16/4 ~17.00 suddenly my APIs deployed in an Azure Function app have become much slower. The architecture ...
Fallen Greg's user avatar
0 votes
1 answer
121 views

I'm using the Azure REST API to trigger a pipeline from 2 different function apps. In order to do that I'm using an HttpClient and sending a POST request with a Basic token (username:password) in the ...
CodeMonkey's user avatar
  • 12.6k
0 votes
1 answer
616 views

I have developed a .NET 8 Function App using the isolated worker model. Following the guidelines provided in the Microsoft documentation : https://learn.microsoft.com/en-us/azure/azure-functions/...
santosh kumar patro's user avatar
1 vote
0 answers
59 views

I have a SignalR Service that has Upsteam connection set up to my Azure function app. In Azure functions app I have triggers for handling client connected and disconnected events, that are working as ...
yohny's user avatar
  • 190
0 votes
1 answer
142 views

We have an Azure Function on .NET 8.0. and we enabled the managed identity of the Azure Function. Then we run those commands as per this official MS link https://learn.microsoft.com/en-us/sharepoint/...
microsoftdeveloperdesigner's user avatar
-1 votes
1 answer
282 views

This repo has the code of an Azure function. I want to open the repo in VS Code, test it locally and then publish the code in Azure. I downloaded the zip and opened the unzipped folder in VS Code. VS ...
Manu Chadha's user avatar
  • 16.9k
0 votes
1 answer
470 views

We have an Azure Function that runs on a scheduled basis, and we have enabled its managed identity. Using this identity, we’ve successfully integrated the function with both Azure SQL Database and ...
microsoftdeveloperdesigner's user avatar
0 votes
1 answer
92 views

i struggle with a simple file-upload to my static web app. Im using azure function v4 to handle incoming requests. normal requests and form-data is handled with a function like this ( body is JSON-...
Puccini's user avatar