diff options
| author | Taras Madan <tarasmadan@google.com> | 2025-07-31 16:05:38 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2025-08-07 08:11:10 +0000 |
| commit | 00dc68fb94791fb479cdd1932b9dd6793f14fefd (patch) | |
| tree | 93270e95d5cef33e8c9862b6e81152c47d274b8b /dashboard/app/main.go | |
| parent | 9a42d6b1e05dfb4fb8867726c63ab9d1bc9d6840 (diff) | |
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.
Diffstat (limited to 'dashboard/app/main.go')
| -rw-r--r-- | dashboard/app/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
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 { |
