Why my functions will be triggered every time I do the deployment
Zhuo Chen
20
Reputation points Microsoft Employee
Why my functions will be triggered every time I do the deployment. they are timer triggered, I set the cron to trigger one time one day.
Here is one example:
[DisableFunction(FunctionAppSettings.DisableFunction)]
[Function("TESTFunction")]
public async Task TestFunction(
[TimerTrigger("0 5 8 * * *")] TimerInfo myTimer)
{
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,882 questions
Sign in to answer