fix name method in the last commit
This commit is contained in:
parent
b91596db32
commit
84753aeac5
@ -113,7 +113,7 @@ def health_check_response(request, full_url, headers):
|
|||||||
health_checks = route53_backend.get_health_checks()
|
health_checks = route53_backend.get_health_checks()
|
||||||
return 200, headers, template.render(health_checks=health_checks)
|
return 200, headers, template.render(health_checks=health_checks)
|
||||||
|
|
||||||
def not_implemented_methods(request, full_url, headers):
|
def not_implemented_response(request, full_url, headers):
|
||||||
action = ''
|
action = ''
|
||||||
if 'tags' in full_url:
|
if 'tags' in full_url:
|
||||||
action = 'tags'
|
action = 'tags'
|
||||||
|
@ -10,5 +10,5 @@ url_paths = {
|
|||||||
'{0}hostedzone/[^/]+$': responses.get_or_delete_hostzone_response,
|
'{0}hostedzone/[^/]+$': responses.get_or_delete_hostzone_response,
|
||||||
'{0}hostedzone/[^/]+/rrset$': responses.rrset_response,
|
'{0}hostedzone/[^/]+/rrset$': responses.rrset_response,
|
||||||
'{0}healthcheck': responses.health_check_response,
|
'{0}healthcheck': responses.health_check_response,
|
||||||
'{0}tags|trafficpolicyinstances/*': responses.not_implemented,
|
'{0}tags|trafficpolicyinstances/*': responses.not_implemented_response,
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user