Questions tagged [azure-functions-runtime]

424 questions
0
votes
1 answer

Azure Function how to move appsettings from local to server and vice versa

I m a little new to Azure. Issue is I m developing Azure Functions and some times I have to work locally (code/ test etc) and other times on Azure. Every time I switch I have to compare and change app settings manually. Is there a way I can avoid…
0
votes
1 answer

Using JWT auth when running azure functons locally

I wrote some Azure functions. Deployed them to Azure. Added Azure authentication so I would have to pass a bearer token to call them from azure. Is there any way I could also require bearer authentication when running them locally from Visual studio…
Justin Dearing
  • 14,270
  • 22
  • 88
  • 161
0
votes
0 answers

Azure function throwing exceptions when called even with default template

I'm baffled by how to just make a simple Azure function. In Visual Studio 2017 (I'm on version 15.5.6) I create a simple project following the instructions here: https://learn.microsoft.com/en-us/azure/azure-functions/functions-develop-vs My…
Architekt
  • 2,141
  • 1
  • 22
  • 27
0
votes
1 answer

Azure Functions Runtime Install "Sequence contains more than one matching element"

I am getting the following error while trying to configure IIS. It is a brand new install What gives?
Dooie
  • 1,649
  • 7
  • 30
  • 47
0
votes
1 answer

Is it possible to run two or more Azure functions simultanously?

I have function app(by default it is consumption plan) which is created by visual studio and has multiple functions including timer trigger and HTTP trigger. So am having some confusion how azure function runs? does timer trigger stop execution of…
Kumari Dimple
  • 343
  • 2
  • 4
  • 14
0
votes
2 answers

Config files and retrieving in Azure-Functions

I've been experimenting with .config files in Azure-Functions. If I write this function using System; using System.Configuration; using System.Net; using System.Net.Http; using System.Threading.Tasks; using Microsoft.Azure.WebJobs; using…
granadaCoder
  • 26,328
  • 10
  • 113
  • 146
0
votes
1 answer

Running Azure functions with IoT Hub trigger

I am trying to run an azure function locally in Visual Studio 2017 preview with latest tooling for azure functions. i want to know how to pull function.json as my function works on the azure portal but not locally in VS2017. Looking forward on how…
0
votes
1 answer

When Does A Function Compile Code

I have a weird scenario. I was updating a shared file in the portal last week. The function seemed to a little laggy but compiling successfully. A week later, with my team not editing, the function starts to throw compilation errors. So the question…
0
votes
1 answer

Binding to Custom Queue Trigger fields in Azure Functions

I've been struggling to define table/blob output bindings based on data in a queue trigger. I realize I could accomplish this with imperative binding in code, but I think this should also be possible via the bindings in functions.json. I thought…
0
votes
4 answers

Azure Functions Bindings not working

I get this error: Microsoft.Azure.WebJobs.Host: Only the 'Read' FileAccess mode is supported for blob container bindings. And according to docs, the out should be supported? I initially tried it with Attributes added in the method definition.…
123 456 789 0
  • 10,565
  • 4
  • 43
  • 72
-1
votes
2 answers

Durable Functions could reduce my time execution?

I can execute a process "x" in parallel using Azure Functions Durable Fan In/Fan Out. If I divide my unique process "x" in multiple process using this concept, can I reduce the execution time for the function?
ricxk
  • 67
  • 1
  • 10
-1
votes
1 answer

Update Azure Function Node.js Version, avoid downtime and lost messages

I have an Azure Function App hosted on an Elastic Premium service plan. It triggers from coming Service Bus messages. I need to upgrade the Node.js version from 12 to 14 (configured in General settings) via Terraform. However, I am afraid of…
-1
votes
1 answer

Is it possible to trigger an Azure function with Python runtime inside a Azure Logic App workflow?

I have some Azure functions with python runtime which perform data validation tasks. I want to trigger the Azure functions inside a Logic App workflow. Is this possible?
-1
votes
1 answer

Trigger execution warnings with Logic App Standard on Azure Function Runtime

I've got a Logic App (Standard) running on an Azure Function runtime, and I've noticed I'm getting spammed with warnings for my O365 When a new email arrives in a shared mailbox (V2) trigger. Trigger is meant to execute on cluster type 'Classic'.…
-1
votes
1 answer

Azure golang function does not receive request payload in the body

I have created an Azure Function in Go. The function is working properly in local machine with GET & POST requests. When published, request payload sent via POST is not available in the request object. Here's my code: # Main function mux :=…
1 2 3
28
29