Why is TimerTrigger in AzureWebJob is being triggered twice?
问题 I am using an Azure WebJob function with the "TimerTrigger" attribute to queue up emails for some users every morning at a certain time. Based on reading, I understand this should behave as a Singleton and only ever trigger once across all scale-out instances. However, users report getting two emails, and logging shows that the function is being called twice. Why is this? Here is the relevant function: public static void EnqueueAllSummaries([TimerTrigger("0 15 8 * * *")] TimerInfo timer,