Questions tagged [azure-functions-runtime]
424 questions
0
votes
0 answers
Azure Functions TimerTrigger Restarted after hours of running
My Azure Function App (TimerTrigger) restarted after hours of running. How to prevent my Function App from stop running before it finishes? It is running on App Service plan.
Always On = True
This image shows what happens before it stopped…

user3609351
- 169
- 1
- 10
0
votes
1 answer
Getting Internal server Error when i run my Azure Function in the Portal
I have created and published a Http triggered Azure function from visual studio.The function is for connecting to the iot hub and getting the module twin properties.
I have configured the local.settings.json file with the module connection string…

Harshith R
- 418
- 1
- 11
- 31
0
votes
1 answer
Do different Azure Functions run on the same Node.js process?
Let's say I have 10 Azure Functions inside one Function App. Each one runs on timer on the 0th second of each minute.
Suppose these functions have blocking non-asynchronous code.
If one function blocks the Node.js process, will the other nine…
user6269864
0
votes
1 answer
Error Azure Functions Timer Graph
I have a Timer Functions (beta version/v2) with that uses the Graph Api and a MySql connection. Everything was working while I had an Http Trigger but now that I've decided to use a Timer Function I'm getting the the error below.
What am I missing?…

Filippo
- 55
- 6
0
votes
0 answers
Azure Functions - AAD Authentication Breaks Development Portal
I've added AAD authentication to an Azure Functions App with a custom domain name and SSL bindings. When I turn this on I start to get errors such as:
"The function runtime is unable to start"
"Unauthorized -…

daz-fuller
- 1,191
- 1
- 10
- 18
0
votes
1 answer
Use Config Manager in Azure Function
How can I use Azure Function app settings to fetch a non-string value?
I use :
var resourceGroupName = System.Configuration.ConfigurationManager.AppSettings["resourceGroupName"];
var dataFactoryName =…

das
- 201
- 1
- 3
- 10
0
votes
1 answer
Javascript Azure function with beta runtime does not return response body for error HTTP responses
With Javascript Azure functions on beta runtime, I have come across an issue where if the function returns success response (200, 201), the response body returned from context.res is correctly returned.
But if the HTTP status is set to 400 or 404,…

Prashant Ambardekar
- 207
- 2
- 10
0
votes
0 answers
Understanding clear about Diagnostics in Durable Functions
I'am working with Durable functions having 3 activities that executes one by one.All 3 activity executed one by one with any delayed, but since few days activities are not running at all and got stopped from executing.I see no exceptions and logs…

Kumari Dimple
- 343
- 2
- 4
- 14
0
votes
1 answer
Azure Activity function invoked multiple times
I have an orchestrator function calls suborchestration and that in turn calls an activity function. For some reason the activity function has been invoked multiple times.
"KMA-Orch-DataRefreshOrchestration" -> "KMA-Orch-DataRefreshSubOrchestration"…

Praveena M
- 522
- 4
- 10
0
votes
2 answers
Azure Functions NodeJS Express app throws Unable to determine function entry point error
I am trying to create a simple hello world azure functions app using nodejs and express. But, i am getting the following error:
Exception while executing function: Functions.httpexpressapp. mscorlib: Unable to determine function entry point. If…

aazeem
- 844
- 1
- 12
- 23
0
votes
1 answer
Is it possible to publish azure functions as precompiled dll's in the azure portal
I am developing Azure functions locally on VS and wish to publish them to azure portal later on. I want my function code to be non editable and non visible in the portal.
Is it possible to pre-compile these function to dll's while publishing? I am…

Rahul Dobriyal
- 21
- 4
0
votes
1 answer
How can I see all functions in the on-prem functions portal
In the on-prem functions portal you can only see functions you built.
Is there a way for developers to view all functions in the on-prem portal and not just ones they built?

Steve L.
- 1,098
- 13
- 23
0
votes
2 answers
Debugging Azure function locally gives a funny path to AppDomain.CurrentDomain.BaseDirectory
Is there a better way to call up and get my email templates from html files in my solution?
I'm calling 'AppDomain.CurrentDomain.BaseDirectory' from a Azure function project and my ASP.Net MVC project to get a path to my email templates. (.html…

chuckd
- 13,460
- 29
- 152
- 331
0
votes
0 answers
Turn On AirCondition at a particular time
I am creating an IOT device where the user can set a particular time to trigger an action by an IOT device. For eg: At 01:00 PM, the Air Conditioner starts automatically. In this case, user will set 01:00PM in the Mobile App which will further be…

Sandy
- 79
- 2
- 8
0
votes
0 answers
Azure Function App error " remote name could not be resolved"
I have a azure function app which is reading a file. It returns the following error:
remote name could not be resolved
Code is just this like:
byte[] attachmentContent = new…

hussmom
- 55
- 1
- 9