From 448c7bbbbd09567e4047e3d3188d3e55f2dfeb73 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> Date: Tue, 14 May 2024 14:34:24 +0200 Subject: [PATCH] store/dash: make main dashboard update cron job silent (#2339) --- maintenance.sh | 2 +- store/fetch_main_dashboard.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/maintenance.sh b/maintenance.sh index dbf9a526..89cd8c5d 100644 --- a/maintenance.sh +++ b/maintenance.sh @@ -83,7 +83,7 @@ function update_app_levels() function fetch_main_dashboard() { pushd store >/dev/null - venv/bin/python3 fetch_main_dashboard.py + venv/bin/python3 fetch_main_dashboard.py 2>&1 | grep -v 'Following Github server redirection' popd >/dev/null } diff --git a/store/fetch_main_dashboard.py b/store/fetch_main_dashboard.py index ce15110e..f0ab5712 100644 --- a/store/fetch_main_dashboard.py +++ b/store/fetch_main_dashboard.py @@ -87,8 +87,6 @@ for app, infos in catalog["apps"].items(): if infos["state"] != "working": continue - print(app) - consolidated_infos[app] = { "public_level": infos["level"], "url": infos["git"]["url"],