From c6cec3dede51a1b4ecbe97be17c533f6b029a0ad Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Sun, 23 Aug 2026 09:36:08 +0200 Subject: [PATCH] add to non-authenticated routes --- cloud/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/app.py b/cloud/app.py index 4eeb5d4..8a76816 100644 --- a/cloud/app.py +++ b/cloud/app.py @@ -153,7 +153,7 @@ start_scheduler_once() # --------------------------------------------------------- # Authentication Middleware # --------------------------------------------------------- -EXEMPT_ROUTES = {'hello_world', 'oauth_callback', 'odata_metadata'} +EXEMPT_ROUTES = {'hello_world', 'oauth_callback', 'odata_metadata', 'debug_telemetryrequest', 'trigger_job_manually'} @app.before_request def authenticate_request():