Fix route53 hosted zone id parsing.

The zone id previously contained hostedzone/<zone_id>
This commit is contained in:
Steve Pulec 2014-09-08 22:00:55 -04:00
commit 79e31e7287
2 changed files with 7 additions and 11 deletions

View file

@ -7,6 +7,6 @@ url_bases = [
url_paths = {
'{0}$': responses.list_or_create_hostzone_response,
'{0}/.+$': responses.get_or_delete_hostzone_response,
'{0}/.+/rrset$': responses.rrset_response,
'{0}/[^/]+$': responses.get_or_delete_hostzone_response,
'{0}/[^/]+/rrset$': responses.rrset_response,
}