From f59baab3d83cc8947c4877ee7bf4718be4896ccf Mon Sep 17 00:00:00 2001 From: Christopher Brady Date: Thu, 30 Apr 2026 11:24:07 -0600 Subject: [PATCH] make event capture url configurable for testapp --- testapp/app.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testapp/app.py b/testapp/app.py index 144cce8..f50448f 100644 --- a/testapp/app.py +++ b/testapp/app.py @@ -103,6 +103,10 @@ async def handle_configure(request: web.Request) -> web.Response: if base_url: cfg.base_url = base_url + event_capture_url = get_config_string("eventCaptureBaseUrl") + if event_capture_url: + cfg.event_capture_url = event_capture_url + # Flag defaults raw_defaults = config.get("flagDefaults") if isinstance(raw_defaults, dict):