From 7748fa6eac11864e98cf4aeb6e3554734c5757f8 Mon Sep 17 00:00:00 2001 From: cake Date: Sun, 7 Dec 2025 02:21:48 +0100 Subject: [PATCH] Back to an hourly action --- .../LightlessSyncServer/Worker/AutoPruneWorker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LightlessSyncServer/LightlessSyncServer/Worker/AutoPruneWorker.cs b/LightlessSyncServer/LightlessSyncServer/Worker/AutoPruneWorker.cs index 9863629..290c014 100644 --- a/LightlessSyncServer/LightlessSyncServer/Worker/AutoPruneWorker.cs +++ b/LightlessSyncServer/LightlessSyncServer/Worker/AutoPruneWorker.cs @@ -61,7 +61,7 @@ namespace LightlessSyncServer.Worker } //Run task each hour to check for pruning - await Task.Delay(TimeSpan.FromMinutes(1), stoppingToken).ConfigureAwait(false); + await Task.Delay(TimeSpan.FromHours(1), stoppingToken).ConfigureAwait(false); } } }