1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-07 02:52:50 -05:00

database maintenance function

This commit is contained in:
Kyle Spearrin
2017-11-15 07:59:03 -05:00
parent 651e42b45c
commit c0cce5a466
2 changed files with 40 additions and 3 deletions

View File

@ -7,9 +7,7 @@ namespace Bit.Function
public static class KeepAlive
{
[FunctionName("KeepAlive")]
public static void Run(
[TimerTrigger("0 */15 * * * *")]TimerInfo myTimer,
TraceWriter log)
public static void Run([TimerTrigger("0 */15 * * * *")]TimerInfo myTimer, TraceWriter log)
{
log.Info($"C# Timer trigger function executed at: {DateTime.Now}");
}