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
Back To Top
Search