From 822208fd34214280e052903a23116847e29dec83 Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Mon, 9 Jul 2012 22:19:31 -0700 Subject: Remove deprecated auth code * Remove nova.auth.manager -- AuthManager, User, Role, Project, etc. * Remove nova.auth.dbdriver * Remove nova.auth.ldapdriver * Remove nova.auth.signer * Remove arbitrary scripts and schemas in nova/auth/ * Remove nova/auth/novarc.template * Remove or update affected tests * Related to bp remove-deprecated-auth Change-Id: Ide0fefd0ddf79ae1b3bb74cb242c2893575839e7 --- nova/api/openstack/compute/contrib/cloudpipe.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'nova/api') diff --git a/nova/api/openstack/compute/contrib/cloudpipe.py b/nova/api/openstack/compute/contrib/cloudpipe.py index a2faf833b..9b2bb3e61 100644 --- a/nova/api/openstack/compute/contrib/cloudpipe.py +++ b/nova/api/openstack/compute/contrib/cloudpipe.py @@ -19,7 +19,6 @@ import os from nova.api.openstack import extensions from nova.api.openstack import wsgi from nova.api.openstack import xmlutil -from nova.auth import manager from nova.cloudpipe import pipelib from nova import compute from nova.compute import utils as compute_utils @@ -58,7 +57,6 @@ class CloudpipeController(object): def __init__(self): self.compute_api = compute.API() self.network_api = network.API() - self.auth_manager = manager.AuthManager() self.cloudpipe = pipelib.CloudPipe() self.setup() -- cgit