Azure Service Bus
An Azure service that provides cloud messaging as a service and hybrid integration.
700 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I have an HTTP Trigger function which runs on every post request hits to its endpoint and after triggering it sends message to the queue.
Now, as soon as queue receives message the service bus triggered has to be executed but it's not executing.
However, everything is working fine locally, but service bus trigger is not triggering after deployment.
{
"bindings": [
{
"queueName": "servicequeue",
"connection": "SERVICE_BUS_CONNECTION",
"name": "myQueueItem",
"type": "serviceBusTrigger",
"direction": "in"
}
],
"scriptFile": "../dist/ServiceBusTrigger/index.js"
}
Environment: Nodejs (Typescript) v3.