From 12eec69301160c36bb0c0962f2818ea407f3f6ba Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 22 Dec 2025 11:11:05 +0100 Subject: dashboard/app: fix up pprof handlers access The url pattern needs to include all debug/.* subpaths, not just debug page itself. --- dashboard/app/app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dashboard') diff --git a/dashboard/app/app.yaml b/dashboard/app/app.yaml index 04e3941f7..9aed7b934 100644 --- a/dashboard/app/app.yaml +++ b/dashboard/app/app.yaml @@ -26,7 +26,7 @@ handlers: static_dir: dashboard/app/static secure: always # debug is for net/http/pprof handlers. -- url: /(admin|debug|cron/.*) +- url: /(admin|debug/.*|cron/.*) script: auto login: admin secure: always -- cgit mrf-deployment