From 00dc68fb94791fb479cdd1932b9dd6793f14fefd Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Thu, 31 Jul 2025 16:05:38 +0200 Subject: pkg/coveragedb: update file to subsystem info periodically #6070 explains the problem of data propagation. 1. Add weekly /cron/update_coverdb_subsystems. 2. Stop updating subsystems from coverage receiver API. --- dashboard/app/main.go | 1 + 1 file changed, 1 insertion(+) (limited to 'dashboard/app/main.go') diff --git a/dashboard/app/main.go b/dashboard/app/main.go index eeba85c9e..0d2e588b1 100644 --- a/dashboard/app/main.go +++ b/dashboard/app/main.go @@ -88,6 +88,7 @@ func initHTTPHandlers() { http.HandleFunc("/cron/deprecate_assets", handleDeprecateAssets) http.HandleFunc("/cron/refresh_subsystems", handleRefreshSubsystems) http.HandleFunc("/cron/subsystem_reports", handleSubsystemReports) + http.HandleFunc("/cron/update_coverdb_subsystems", handleUpdateCoverDBSubsystems) } func handleMovedPermanently(dest string) http.HandlerFunc { -- cgit mrf-deployment