From 4e9d5f68853f3a33881ff76b42a0e588f2a3a728 Mon Sep 17 00:00:00 2001 From: Max Shytikov Date: Mon, 7 Apr 2014 01:35:52 +0200 Subject: [PATCH] Updated default 'match_on' --- vcr/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vcr/config.py b/vcr/config.py index 4cc335f..657f706 100644 --- a/vcr/config.py +++ b/vcr/config.py @@ -9,7 +9,7 @@ class VCR(object): serializer='yaml', cassette_library_dir=None, record_mode="once", - match_on=['url', 'method'], + match_on=['method', 'host', 'port', 'path', 'query'], filter_headers=[], filter_query_parameters=[], before_record=None, @@ -25,7 +25,9 @@ class VCR(object): 'method': method, 'url': url, 'host': host, + 'port': method, 'path': path, + 'query': path, 'headers': headers, 'body': body, }