Skip to content

Commit

Permalink
changed cron settings
Browse files Browse the repository at this point in the history
  • Loading branch information
avrob committed Aug 2, 2024
1 parent 714c246 commit 293a7d0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SAA/S0142/ScannerDF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class ScannerDF
{
[Function("ScannerDF")]
public static async Task Run(
[TimerTrigger("33 1,2,3,4 * * *", RunOnStartup = true)] TimerInfo scanTimer,
[TimerTrigger("0 */6 * * *")] TimerInfo scanTimer,
FunctionContext context)
{
var _logger = context.GetLogger(nameof(ScannerDF));
Expand Down
2 changes: 1 addition & 1 deletion SAA/S0142/ScannerII.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class ScannerII
{
[Function("ScannerII")]
public static async Task Run(
[TimerTrigger("3 1,2,3,4 * * *", RunOnStartup = true)] TimerInfo scanTimer,
[TimerTrigger("10 */6 * * *")] TimerInfo scanTimer,
FunctionContext context)
{
var _logger = context.GetLogger(nameof(ScannerII));
Expand Down
2 changes: 1 addition & 1 deletion SAA/S0142/ScannerRF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class ScannerRF
{
[Function("ScannerRF")]
public static async Task Run(
[TimerTrigger("23 1,2,3,4 * * *", RunOnStartup = true)] TimerInfo scanTimer,
[TimerTrigger("20 */6 * * *")] TimerInfo scanTimer,
FunctionContext context)
{
var _logger = context.GetLogger(nameof(ScannerRF));
Expand Down
2 changes: 1 addition & 1 deletion SAA/S0142/ScannerSF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class ScannerSF
{
[Function("ScannerSF")]
public static async Task Run(
[TimerTrigger("13 1,2,3,4 * * *", RunOnStartup = true)] TimerInfo scanTimer,
[TimerTrigger("30 */6 * * *")] TimerInfo scanTimer,
FunctionContext context)
{
var _logger = context.GetLogger(nameof(ScannerSF));
Expand Down

0 comments on commit 293a7d0

Please sign in to comment.