diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2025-12-22 11:11:05 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2025-12-22 10:23:09 +0000 |
| commit | 12eec69301160c36bb0c0962f2818ea407f3f6ba (patch) | |
| tree | 288c579cbc54a30f86c7797daa7f5332f037fa9f /dashboard | |
| parent | d3944bf30053fd6b91f48b2b9462d48d01f8e4d7 (diff) | |
dashboard/app: fix up pprof handlers access
The url pattern needs to include all debug/.* subpaths, not just debug page itself.
Diffstat (limited to 'dashboard')
| -rw-r--r-- | dashboard/app/app.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
