skip to Main Content

Service Bus trigger not working in Azure portal but works locally with Node.js v4 Azure Functions

I'm using the Node.js v4 programming model for Azure Functions, and I have a Service Bus-triggered function with the following setup: app.serviceBusQueue('MyFunctionName', { queueName: 'myQueueName', connection: 'ServiceBusConnectionString', handler: azureFunction, isSessionsEnabled: true, }); Host.json: { "version": "2.0", "extensionBundle": { "id": "Microsoft.Azure.Functions.ExtensionBundle",…

VIEW QUESTION

Azure Functions isolated logging

I am currently writing an Azure Function and had a look into the documentation of Azure Function. This documentation suggest to remove the default rule for application insights: https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide?tabs=windows#managing-log-levels The rest of your application continues to work with ILogger and…

VIEW QUESTION
Back To Top
Search