Skip to main content
Filter by
Sorted by
Tagged with
2 votes
4 answers
3k views

My Code Look like this : public class Startup : IWebJobsStartup { public async void Configure(IWebJobsBuilder builder) { Get Connection string Via HTTP Service. ...
Rahul Vyas's user avatar
0 votes
1 answer
602 views

I am using Azure Functions, and have stumbled upon an issue. When requesting large amount of data from an external source, it seems the stream is shut. I have simplified the example as simple as I ...
tank104's user avatar
  • 472
4 votes
2 answers
3k views

this is probably a noob question. I have an Azure Function that responds to HTTP requests and it works fine, I can call it from a browser or from a Python 3.8 script. I want to make another function ...
robliv's user avatar
  • 1,571
1 vote
2 answers
2k views

My Application settings of Azure function app, has keyvault reference like @Microsoft.KeyVault(SecretUri=https://myvalut.vault.azure.net/secrets/mySecret/), whenever new version of "mySecret" ...
191180rk's user avatar
  • 913
4 votes
1 answer
978 views

Is there any way to limit an Azure function to just be allowed to be called from a particular domain? It is just in order to do not have an api exposed in public, I want that api to just be consumed ...
Juan Garcia's user avatar
1 vote
0 answers
822 views

I have timer triggered azure function which runs in every 5 seconds. But Web Job Host is stopping in every 3/4 hour randomly for about 5 minutes and then start again. I am not sure why? There is no ...
Shailendra's user avatar
-1 votes
1 answer
193 views

I followed this links. https://dontcodetired.com/blog/post/Azure-Functions-Dependency-Injection-with-Autofac Autofac Binding at Runtime It worked fine. I want to know when azure function scales, ...
Shrirang's user avatar
  • 1,346
0 votes
2 answers
3k views

I have timer trigger azure function which runs on every minute. Is it possible to get the count of how many time the function executed in my Azure function c# code at every time function execute? PS: ...
Shailendra's user avatar
2 votes
0 answers
494 views

using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Host; using Microsoft.Extensions.Logging; //Nuget package using MyComp.MyLib.Contracts.Configuration; // Custom namespace after adding ...
191180rk's user avatar
  • 913
0 votes
1 answer
48 views

I’m planning to build a mediator service to dynamically bind to various azure service bus subscriptions. This is to facilitate the http callback pattern using Azure service bus to manage the clients ...
arbs.io's user avatar
  • 48
0 votes
1 answer
375 views

Trying to deploy azure function to azure. Getting this error: The function runtime is unable to start. Microsoft.Azure.WebJobs.ServiceBus: Microsoft Azure WebJobs SDK ServiceBus connection string '...
Eugene Goldberg's user avatar
1 vote
1 answer
2k views

Trying to run an Azure Functions project locally and get the following error: Insufficient memory to continue the execution of the program. This happens before anything is logged or startet so there ...
CodeMonkey's user avatar
  • 3,688
1 vote
1 answer
3k views

I want to trigger HttpTrigger function every day at 9.00 PM using the Timer trigger. Is it possible in Azure function for python? I am not able to understand how can I implement it? Is there any way ...
Akshay Godase's user avatar
2 votes
0 answers
627 views

Is there a shutdown hook for JS Azure Functions? The C# library supports a CancellationToken which allows the user to supply a shutdown hook, but I can't find any doc on the equivalent for the v2 ...
Derek's user avatar
  • 1,616
1 vote
2 answers
2k views

Unable to load DLL 'Microsoft.CognitiveServices.Speech.core.dll' or one of its dependencies: The specified module could not be found. (Exception from HRESULT: 0x8007007E) Please help Been ...
siboniso Dlamini's user avatar
2 votes
1 answer
338 views

Certain Azure Function triggers have a retry policy per docs, but what about output bindings? What if an attempted write to blob via output binding fails? Is there any retry around that?
andrewbadera's user avatar
  • 1,362
0 votes
1 answer
1k views

So a quick background - I am running an application called OpenFace - a facial behavior analysis toolkit. Its written in C++ but they have COM interops which allows me to use it within a NET framework ...
David's user avatar
  • 743
11 votes
2 answers
8k views

If I read the documentation for maxPollingInterval: The maximum interval between queue polls From here: https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue#...
mslot's user avatar
  • 5,214
11 votes
5 answers
8k views

Issue with Azure Functions/EFSQLSERVER .NET CORE 3.0: To reproduce: Use Visual Studio 2019 16.2.1 Use Azure Function template to create a project. Changed Target Framework to .NET Core 3.0 Add ...
Athadu's user avatar
  • 884
1 vote
1 answer
7k views

I am receiving below error when function app is running on the run-time version "2.0.12701.0" (FUNCTIONS_EXTENSION_VERSION = ~2 in App Settings). As soon I change the FUNCTIONS_EXTENSION_VERSION to 2....
SIDHU's user avatar
  • 70
0 votes
1 answer
217 views

I have release azure function app from VSO Azure App Service Deploy release task, it gives: System.Nets.SocketException: An attempt was made to access a socket in a way forbidden by its access ...
Ashutosh Kumar's user avatar
0 votes
1 answer
163 views

I have an Azure time trigger function developed in Azure portal which will trigger once in a day. The triggering function was working fine yesterday, but suddenly today function is returning the below ...
Antony's user avatar
  • 1,128
4 votes
1 answer
2k views

Is an ActivityTrigger Durable Function still restricted to max timeout duration of 10 mins via consumption plan below: https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale#timeout ...
Pingpong's user avatar
  • 8,097
1 vote
1 answer
384 views

What is the proper way to use the azure function core tools and debug a V1 nodejs function locally using visual studio code? For a new V2 function everything works great. I cannot update to V2 ...
Jason Goemaat's user avatar
2 votes
1 answer
4k views

I was able to run function app which has eventhub binding from local as well as from West US2 Consumption plan. From last 4 days, after we moved all our dependent projects to build in x64 and updating ...
seesharpconcepts's user avatar

1
3 4
5
6 7
10