Skip to content

Commit

Permalink
Updated timer run interval to every 4 days at 2am PST
Browse files Browse the repository at this point in the history
  • Loading branch information
morrisonbrett committed Dec 9, 2024
1 parent cd21b0d commit 2687b2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pickuphockey.Functions/CheckCalendar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public CheckCalendar(ILoggerFactory loggerFactory)

#region interface
[Function("CheckCalendar")]
public async Task RunAsync([TimerTrigger("0 0 5,17 * * *")] TimerInfo timerInfo)
public async Task RunAsync([TimerTrigger("0 0 10 */4 *")] TimerInfo timerInfo)
{
_logger.LogInformation("Timer trigger function executed.");

Expand Down

0 comments on commit 2687b2a

Please sign in to comment.