Questions tagged [azure-functions-runtime]
424 questions
0
votes
0 answers
Azure Function with HTTP Trigger returns 204 but does not execute function
I have a bash script that iterates over all files in a folder and uses curl to post them to an Azure Function with an HTTP trigger.
Function details:
- v2.0 function
- written in C#
- consumption plan
Most of the time this works as expected:
The…

thehereward
- 31
- 4
0
votes
1 answer
Have parameter in Function settings still getting Not found issue at Azure Function
I have deployed one azure function but getting below error -
The function runtime is unable to start. Microsoft.Azure.ServiceBus:
Value for the connection string parameter name
'$(MyDemoConnectionString)' was not found
When I checked into…

Neo
- 15,491
- 59
- 215
- 405
0
votes
2 answers
How can I get the count of Azure function execution programmatically in c#?
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: I need this count to generate a sequential…

Shailendra
- 153
- 3
- 11
0
votes
1 answer
How to Create (and remove) AzFunctions at runtime
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 offset and AzFunc for circuit breaker…

arbs.io
- 38
- 3
0
votes
2 answers
Calling Azure Functions Runtime from Logic Apps
I have on-premise azure functions create via the Azure Functions Runtime. How do I call these functions from a logic apps resource on the cloud. Based on what I have been reading I need to install the on-premise data gateway first. This will be the…

user2503480
- 193
- 3
- 16
0
votes
1 answer
Azure functions runtime unable to start
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
- 14,286
- 20
- 94
- 167
0
votes
1 answer
Azure Functions support for authentication with HTTP trigger running in Kubernetes
Using the built in App Service Authentication / Authorization to populate the ClaimsPrincipal when hosting functions in Azure works great and is pretty well documented.
However, trying to accomplish this with a containerized app in Kubernetes is a…

Eli Pulsifer
- 713
- 9
- 25
0
votes
1 answer
Java Azure Function stuck "Executing"
I've been working on getting my local environment setup to develop an Azure Function written in java. It appears I've installed and configured all the necessary extensions but my function freezes once it's triggered. When I check open ports via…

user9360564
- 355
- 1
- 4
- 13
0
votes
1 answer
Not getting regular service bus messages when configuring to receive messages from deadletterqueue
this is how my azure function code looks like..
[FunctionName("Function1")]
public static void Run([ServiceBusTrigger("myqueue/$DeadLetterQueue", Connection = "ServiceBusConnection")]Message myQueueItem, ILogger log, int deliveryCount,
…

Utkarsh Patel
- 305
- 2
- 8
0
votes
1 answer
Azure functions - Deploy 64 bit only application
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 realm. I have it working fine locally via .NET…

David
- 693
- 7
- 20
0
votes
1 answer
how to send batch data to the event hub from the azure function in node js?
I'm trying to send data to the event hub from the azure function written on node js.
But I'm getting the following error when I send the array of objects without.
No events found for 'NSEStockInput'.
Start time: Monday, September 23, 2019, 6:56:00…

saran k
- 307
- 2
- 14
0
votes
1 answer
Azure function app deployment working with VS 2017 but not with Azure Web App deploy task
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 permissions I searched on google, people say the…

Ashutosh Kumar
- 61
- 1
- 10
0
votes
1 answer
Windows PDB writer version Error while running an Azure Time Trigger Function
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 error while running the…

Antony
- 970
- 3
- 20
- 46
0
votes
1 answer
What does Environment.Exit do when run in Azure Functions?
With Azure WebJobs, you can force a restart of a webjob process by calling Environment.Exit and returning. This forces a restart of the webjob which in my case reloaded a bugged out external dll that I had.. I´ve recently moved some code from…

bech
- 627
- 5
- 22
0
votes
2 answers
Is there a way to develop and execute python code in azure function directly in azure portal?
I'm looking for developing and execute python code directly in azure portal but
But I can only see the .Net,Java and Node js where I can get the Python

saranraj kumar
- 207
- 1
- 2
- 10