From efed5fcfcb006acb52c6719a8713e00715652019 Mon Sep 17 00:00:00 2001 From: lorenzejay Date: Tue, 26 May 2026 13:22:50 -0700 Subject: [PATCH] Update VCR configuration to use 'host' instead of 'bedrock_host' for request matching --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 9843e0b23..a025050be 100644 --- a/conftest.py +++ b/conftest.py @@ -322,7 +322,7 @@ def vcr_config(vcr_cassette_dir: str) -> dict[str, Any]: "before_record_request": _filter_request_headers, "before_record_response": _filter_response_headers, "filter_query_parameters": ["key"], - "match_on": ["method", "scheme", "bedrock_host", "port", "path"], + "match_on": ["method", "scheme", "host", "port", "path"], } if os.getenv("GITHUB_ACTIONS") == "true":