From 5ff998d66e12a3a0e4f4a3a31f5902633570d89a Mon Sep 17 00:00:00 2001 From: Piotr Wachulec Date: Sat, 20 Apr 2024 08:06:49 +0200 Subject: [PATCH] Change time trigger to 15 minutes --- src/app/VMStartStop/TagManager/API/TagManagerTimeTrigger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/VMStartStop/TagManager/API/TagManagerTimeTrigger.cs b/src/app/VMStartStop/TagManager/API/TagManagerTimeTrigger.cs index 6b53f3e..ee635f2 100644 --- a/src/app/VMStartStop/TagManager/API/TagManagerTimeTrigger.cs +++ b/src/app/VMStartStop/TagManager/API/TagManagerTimeTrigger.cs @@ -23,7 +23,7 @@ public class TagManagerTimeTrigger } [Function("TagManager")] - public void Run([TimerTrigger("0 */1 * * * *")] TimerInfo myTimer) + public void Run([TimerTrigger("0 */15 * * * *")] TimerInfo myTimer) { _logger.LogInformation($"C# Timer trigger function executed at: {DateTime.Now}");