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

I am getting the below error when trying to run a new Function. The Function is created from the HttpTrigger template on dotnet cli with no edits. I am running the most recent MacOS (but I hadn't ...
PeteC's user avatar
  • 91
0 votes
0 answers
37 views

I’m running Azure Functions in a Docker-based devcontainer using the official Python Core Tools image: FROM mcr.microsoft.com/azure-functions/python:4-python3.10-core-tools and I have the following ...
Peder Ward's user avatar
0 votes
1 answer
90 views

I've been developing a python Azure Function and debugging locally for about a month now. Suddenly, the local debugging was unable to execute "func host start" and returns the below error: ...
HeatPumpHero's user avatar
0 votes
1 answer
546 views

I have a Python 3.11 Function App that runs locally. I'm developing on Windows 11, and VS Code, fwiw. I have all of the Azure extensions; I have the Azure Tools extension pack, which includes the ...
user28500450's user avatar
0 votes
2 answers
448 views

I am having problems debugging my azure functions app in VSCode on a macbook. I have a functions v4 project that was created on my Windows machine and moved over to my mac. When I tried to run the ...
afriedman111's user avatar
  • 2,471
1 vote
2 answers
210 views

I'm setting a batchSize of 1 in host.json, but when I run the function locally (QueueTrigger input), I get many messages from my queue when it should be only 1. host.json: { "version": &...
Shahin Dohan's user avatar
  • 7,012
8 votes
4 answers
7k views

I'm trying to run a basic C# Azure Function with Time Trigger locally on a Mac within vsCode. I have installed .Net 8 SDK, and and Azure Function Core Tools. When I run the basic function (just the ...
PeteC's user avatar
  • 91
1 vote
1 answer
173 views

I am trying to log the activities that are happening to each azure function invocation. Here is a sample log: [2024-10-16T07:02:36.887Z] Executing 'Functions.http_app_func' (Reason='This function was ...
Rahul Vasa's user avatar
4 votes
2 answers
3k views

I am currently using Visual Studio 2022. I have Azure functions project. <TargetFramework>net8.0</TargetFramework> <AzureFunctionsVersion>v4</AzureFunctionsVersion> I am ...
Vinny's user avatar
  • 659
0 votes
1 answer
316 views

I installed [email protected] in my windows machine manually as npm install was failing due to certificate issue. However when I try to run my project, I am getting the below error. ...
DevFahim's user avatar
0 votes
1 answer
1k views

When I try to install Azure Function Core Tools, I am getting the below error. I checked through my browser the link where GET request is failing and I was able to download the zip package, so I think ...
DevFahim's user avatar
0 votes
1 answer
255 views

I have a python azure function app. It was working fine, until this morning. func start runs fine, but when I run the listed endpoints, it throws this error: An unhandled host error has occurred. [...
Rahul Sharma's user avatar
0 votes
1 answer
226 views

Initial Issue: Azure Function not showing HTTP Triggers when deployed. OS: Tried on both macOS M1 and Windows 11. Repro Steps: Create a Python project with HTTP Trigger function and open it in VS Code....
rishabincloud's user avatar
0 votes
1 answer
313 views

I'm developing an Azure function app. This app will require the caller to supply a client certificate as part of the http call. Then I wish to get the sent client certificate and validate it against ...
developer82's user avatar
  • 13.8k
0 votes
1 answer
228 views

I am new to Azure functions and am trying to deploy an azure function locally by following the guide https://quarkus.io/guides/azure-functions The function is deployed successfully when run through ...
Saurav Vasudev's user avatar
1 vote
1 answer
2k views

I am running an HTTP-Triggered Azure Durable Function with a nested orchestrator structure. A single execution of the function can run for multiple hours and make hundreds of database operations. ...
Julian's user avatar
  • 15
0 votes
2 answers
105 views

azure functions created in one cloud location for example south India should be able to create resource group in location central US I want a clear step by step approach if this is possible. const { ...
Paul's user avatar
  • 169
0 votes
1 answer
400 views

When attempting to Run a Logic App in VSCode I get the error below When I run c:\Users\xxxx\.azurelogicapps\dependencies\FuncCoreTools\func host start from a command prompt in the folder where host....
user195166's user avatar
0 votes
2 answers
110 views

Can i change the Azure Service Bus transport type used by func? I ran c:\Users\xxxx.azurelogicapps\dependencies\FuncCoreTools\func host start --verbose and I observed the following in the output: [...
user195166's user avatar
0 votes
3 answers
1k views

Does anyone know if there's a simple, recommended way to always background start/stop Azurite using a temp directory when F5 debugging in VS Code, like Visual Studio proper does, maybe through the ...
scottrudy's user avatar
  • 1,762
0 votes
1 answer
681 views

Background I am trying to migrate my HTTP-triggered Azure Functions Apps to isolated process. For myself to understand how an isolated-process Functions app work, I started from the template provided ...
kumkee's user avatar
  • 17
2 votes
2 answers
439 views

Can Visual Studio use the 32-bit version of Azure Functions Core Tools instead of the 64-bit version when debugging? My Azure Function uses a third-party 32-bit DLL, so my code needs to run as 32-bit....
Mike's user avatar
  • 1,800
0 votes
1 answer
446 views

The Dockerfile generated by func init --docker-only uses other .NET version. func init --worker-runtime dotnet-isolated creates functions project with .NET 8, then func init --docker-only creates ...
mvinicius2k's user avatar
0 votes
1 answer
651 views

Tools VSCode WSL2 Ubuntu 22.04 Python 3.10.12 I am using the Code created when using Workspace/New Project... Project consistently fails with: ConnectionRefusedError: [Errno 111] Investigative ...
jlo-gmail's user avatar
  • 5,096
0 votes
1 answer
252 views

I have tried to deploy a functions app to azure. The app deploys but then does not recognise I have functions. import logging import os import azure.functions as func from azure.core.credentials ...
Tyler B McCarthy's user avatar
9 votes
3 answers
8k views

I have just created a new Azure Functions project with a Queue Trigger, straight out of the box using the following tech stack, and it doesn't build, and returns an error stating that " Error ...
Goober's user avatar
  • 13.5k
5 votes
4 answers
8k views

I have some experience with Azure Functions but I am new to isolated worker process and v4. I get this warning/error message: No job functions found. Try making your job classes and methods public. ...
Daan's user avatar
  • 3,068
0 votes
1 answer
2k views

I'm trying to run a local python function in Visual Studio code. I am under a proxy using a .pac file when executing the "func host start" command it gives me the following error: Microsoft....
Jorge Fuentes's user avatar
1 vote
1 answer
2k views

I've been working on an Azure Functions project in Rider and, historically, was able to run local functions just fine. Then I reformatted my PC, re-installed Rider + dependencies and pulled the ...
Bilal Akil's user avatar
  • 4,755
2 votes
2 answers
3k views

Command:- "npm install -g azure-functons-core-tools@4" Error:- npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDOs regression ...
Lakshmi_N's user avatar
1 vote
0 answers
265 views

I'm currently working on a project that involves Azure Functions, and I'm facing some challenges running them locally on my Mac M2 machine. I've tried following the official documentation, but I seem ...
Thirunavukkarasu Muthuswamy's user avatar
0 votes
1 answer
1k views

Is something wrong with my pom.xml which could be causing GitHub actions to throw an error when trying to Restore Project Dependencies Using Mvn? I have a feeling there is some sort of compatibility ...
supermariowhan's user avatar
3 votes
3 answers
11k views

I'm trying to locally test a function i've written, but keep getting the error "cannot import name 'cygrpc' from 'grpc._cython" which causes attempts to run the function to fail I've made ...
howlieT's user avatar
  • 258
7 votes
2 answers
8k views

I'm encountering a weird warning with azure functions locally. Whenever I func start my function, I get these error messages: Found Python version 3.10.12 (python3). Azure Functions Core Tools Core ...
Morti's user avatar
  • 717
0 votes
1 answer
290 views

I am building a Static Web App using Node functions for an API. Everything works when deployed to Azure, but I cannot run locally on Mac. I am able to run locally on Windows. I am using the new v4 ...
CSJ's user avatar
  • 4,021
0 votes
1 answer
1k views

I'm migrating my Azure Function App from the v1 to v2 Python Programming Model. The one thing I can't figure out is how to have my HTTP-triggered function to listen only to POST requests. Meaning it ...
Jeff G's user avatar
  • 1,148
0 votes
2 answers
822 views

I'm trying to make an example of BlobTrigger Azure Function using Visual Studio Code. For that I was following along the Book "Beginning Azure Functions" of Rahul Sawhney. My csproj file is: ...
Code4Fun's user avatar
  • 473
0 votes
1 answer
864 views

I recently updated my system to Windows 11. I am no longer able to run my Azure functions api locally using VSCode due to the Handshake Failure error. Error is below: > [2023-10-19T10:23:15.097Z] ...
Sturdy's user avatar
  • 1
1 vote
1 answer
443 views

I'm encountering an issue with my Azure Functions deployment. Only core function files are being uploaded, omitting essential project files. I need to resolve this without utilizing pipelines. I'm ...
sairkrishna's user avatar
3 votes
2 answers
6k views

I am attempting to deploy an Azure Function to production. Local environment: Windows 10 VS Code 1.82.2 Python 3.9.10 Azure Function Core Tools 4.0.5390 Azure environment: Two function apps (dev/...
George's user avatar
  • 415
2 votes
2 answers
2k views

Trying to publish function as below code: func azure functionapp publish funclogicabcd While executing above command, Following error occurs: Azure Functions Core Tools does not support this ...
AVG's user avatar
  • 71
1 vote
1 answer
490 views

I have an azure function that is compute intensive. While I like the ability that azure functions has to scale dynamically using Azure cloud resources, I'd also like to be able to "Bring my own ...
Taylor Lafrinere's user avatar
0 votes
1 answer
361 views

I used Azure function core tools (version 4.0.5198) to created an isolated function as commands below: func init LocalFunctionProj --worker-runtime dotnet-isolated --target-framework net7.0 cd ./...
Dan Van's user avatar
  • 85
4 votes
0 answers
164 views

My Azure function project now fails intermediately! I've been experiencing this for about a week. Ex. I just deployed to my slot "dev-1" and it failed with the massage below. Then I waited ...
chuckd's user avatar
  • 14.8k
0 votes
1 answer
545 views

I am upgrading an existing Function App into v4 runtime. I'm running and testing it locally via venv. function.json { "scriptFile": "__init__.py", "bindings": [ { ...
iamrhass's user avatar
0 votes
2 answers
3k views

I have a simple Azure python function with the v2 programming model with decorator approach and I needed to redeploy it. It always worked in the first place, I debugged it locally and it works just ...
holger.waschke's user avatar
0 votes
2 answers
2k views

Trying to upgrade my local vs code azureFunctions.projectRuntime from v3 to v4 for my azure function app written in python. I have installed the azure function tools 4 using both the installer and the ...
Vishwaksena's user avatar
0 votes
1 answer
2k views

I'm trying to run an Azure function as a docker image but I'm getting this strange log: Azure.Storage.Queues: Value cannot be null. (Parameter 'value'). An unhandled exception has occurred. Host is ...
lordav's user avatar
  • 304
0 votes
1 answer
1k views

I'm having some issues with the Durable Function Monitor plugin for Visual Studio Code. When I'm using Azure Functions Core Tools v3, I get this error message when I try to launch the plugin: "...
Alpha24's user avatar
8 votes
4 answers
15k views

I am currently developing an Azure Function in VS Code. I am encountering an error that has already been reported in this GitHub issue. In full, the error reads: Microsoft.Azure.WebJobs.Extensions....
DataBach's user avatar
  • 1,695

1
2 3 4 5
7