Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
vcr shouldn't match on hostport
Browse files Browse the repository at this point in the history
  • Loading branch information
blampe committed Sep 18, 2015
1 parent 6c881e2 commit d76e35c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,7 @@ Changes by Version
0.17.2 (unreleased)
-------------------

- Nothing changed yet.
- VCR no longer matches on hostport to better support ephemeral ports.


0.17.1 (2015-09-17)
Expand Down
2 changes: 1 addition & 1 deletion tchannel/testing/vcr/cassette.py
Expand Up @@ -81,7 +81,7 @@ def matcher(left, right):
# By default, two requests match if their service name, hostport, endpoint,
# headers, body, and arg scheme match.
DEFAULT_MATCHERS = (
'serviceName', 'hostPort', 'endpoint', 'headers', 'body', 'argScheme',
'serviceName', 'endpoint', 'headers', 'body', 'argScheme',
)
# TODO: protocol headers?

Expand Down

0 comments on commit d76e35c

Please sign in to comment.