From c63e98cd2401e337dcfdf81851a73f5fd6ad841a Mon Sep 17 00:00:00 2001 From: Ashraf Fouda Date: Wed, 17 Dec 2025 16:21:23 +0200 Subject: [PATCH] make speedtest run every 6h Signed-off-by: Ashraf Fouda --- pkg/perf/speedtest/speedtest_task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/perf/speedtest/speedtest_task.go b/pkg/perf/speedtest/speedtest_task.go index c3214800..ac50fd33 100644 --- a/pkg/perf/speedtest/speedtest_task.go +++ b/pkg/perf/speedtest/speedtest_task.go @@ -28,7 +28,7 @@ func (c *SpeedTestTask) ID() string { // Cron returns task cron schedule. func (c *SpeedTestTask) Cron() string { - return "*/30 * * * * *" + return "0 0 */6 * * *" } // Description returns task description.