I have an azure timer trigger function hosted in an app service plan (I3 : 5)
By default app service plan instance count has been set to 5
So whenever timer trigger starts, it is starting from all the five instances parallelly.
I want to restrict the timer trigger running to a single instance.
I made the below line of code on top of the timer trigger function name
[Singleton(Mode = SingletonMode.Listener)]
But it is not restricting to single Instance. Again timer trigger running in all the 5 instances.
Appreciate your comments and answers.