@Edward ,
Thanks for reaching out to Q&A.
If the app is running on App service plan SKU, please make sure "always on" is turned on in the configuration-> General settings
Feel free to reach out to me if you have any questions.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I encountered strange behavior in the Production this past few weeks where my durable function is not triggered on a specific day.
I have this timer trigger Durable function, please see the code below.
[FunctionName("PaymentProcessTimerTrigger")]
public async Task RunPaymentProcess(
[TimerTrigger("0 0 22 * * 1-5")] TimerInfo myTimer,
[DurableClient] IDurableOrchestrationClient starter, ILogger log)
{
log.LogInformation($"PaymentProcessOrchestrator executed at: {DateTime.UtcNow.ToShortDateString()}");
await starter.StartNewAsync"PaymentOrchestrator", null);
}
With the cron expression, I expect that this will be triggered every 10 pm from Monday - Friday. But it seems that it was only triggered every Monday-Thursday.
Please let me know if there is anything that I need to adjust with my implementation. Thanks in advance.
@Edward ,
Thanks for reaching out to Q&A.
If the app is running on App service plan SKU, please make sure "always on" is turned on in the configuration-> General settings
Feel free to reach out to me if you have any questions.