diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-05-29 16:15:08 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-05-29 16:15:08 +0000 |
| commit | 2ca8bd8b350739b03d3d35151b6e350615e23841 (patch) | |
| tree | 8b652e51ab4e5ca9c1b23f03122cf01712d24b27 /nova/api | |
| parent | a5265cfbe6d12d6edb12167cd55f527cd679d042 (diff) | |
| parent | 86a264488d670437ad77561019ecb1201ff8a31b (diff) | |
| download | nova-2ca8bd8b350739b03d3d35151b6e350615e23841.tar.gz nova-2ca8bd8b350739b03d3d35151b6e350615e23841.tar.xz nova-2ca8bd8b350739b03d3d35151b6e350615e23841.zip | |
Merge "Rename policy auth for V3 os-fixed-ips"
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/compute/plugins/v3/fixed_ips.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/nova/api/openstack/compute/plugins/v3/fixed_ips.py b/nova/api/openstack/compute/plugins/v3/fixed_ips.py index dc22a83ea..e98b830bd 100644 --- a/nova/api/openstack/compute/plugins/v3/fixed_ips.py +++ b/nova/api/openstack/compute/plugins/v3/fixed_ips.py @@ -22,7 +22,9 @@ from nova import exception from nova.openstack.common import log as logging LOG = logging.getLogger(__name__) -authorize = extensions.extension_authorizer('compute', 'fixed_ips') + +ALIAS = "os-fixed-ips" +authorize = extensions.extension_authorizer('compute', 'v3:' + ALIAS) class FixedIPController(object): @@ -82,7 +84,7 @@ class FixedIPs(extensions.V3APIExtensionBase): """Fixed IPs support.""" name = "FixedIPs" - alias = "os-fixed-ips" + alias = ALIAS namespace = "http://docs.openstack.org/compute/ext/fixed_ips/api/v3" version = 1 |
