Ensure the ec2 API supports HEAD

This commit makes it so all GET APIs within the ec2 API
support HEAD. This change doesn't include any tests because
the ec2 API is untested, see bug 1635389 for more details.

Change-Id: Iab7326d0758425f535c57c64f9cdca5f2e8d122b
Partial-Bug: 1696574
This commit is contained in:
Lance Bragstad 2017-06-13 15:15:41 +00:00
parent a83257f756
commit 17cfe62e8f
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ class Ec2ExtensionV3(wsgi.V3ExtensionRouter):
self._add_resource(
mapper, ec2_controller,
path='/users/{user_id}/credentials/OS-EC2',
get_action='ec2_list_credentials',
get_head_action='ec2_list_credentials',
post_action='ec2_create_credential',
rel=build_resource_relation(resource_name='user_credentials'),
path_vars={
@ -81,7 +81,7 @@ class Ec2ExtensionV3(wsgi.V3ExtensionRouter):
self._add_resource(
mapper, ec2_controller,
path='/users/{user_id}/credentials/OS-EC2/{credential_id}',
get_action='ec2_get_credential',
get_head_action='ec2_get_credential',
delete_action='ec2_delete_credential',
rel=build_resource_relation(resource_name='user_credential'),
path_vars={