Azure Servicebus Queue function trigger called twice
问题 I have an Azure function with a ServiceBusTrigger that is being called twice when it is deployed to Azure. It is very easy to reproduce. Just create a new ServiceBus Trigger function and add a message to the queue. Here's the code to send the message: static async Task Main(string[] args) { IQueueClient qc = new QueueClient(_sbConnString, "testing"); string data = "hello"; var msg = new Message(Encoding.UTF8.GetBytes(data)); await qc.SendAsync(msg); await qc.CloseAsync(); } Here's the