Skip to content

Commit

Permalink
fix interval
Browse files Browse the repository at this point in the history
  • Loading branch information
cammj committed May 9, 2024
1 parent 36b9182 commit bfd2b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static class Sync
private static ILogger _log { get; set; }

[FunctionName("Sync")]
public static async Task RunAsync([TimerTrigger("0 */1 * * * *")] TimerInfo myTimer, ILogger log)
public static async Task RunAsync([TimerTrigger("0 */15 * * * *")] TimerInfo myTimer, ILogger log)
{

_log = log;
Expand Down

0 comments on commit bfd2b93

Please sign in to comment.