~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/api/openstack/compute/contrib/cloudpipe.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-08-16 14:04:11 UTC
  • mto: This revision was merged to the branch mainline in revision 84.
  • Revision ID: package-import@ubuntu.com-20120816140411-0mr4n241wmk30t9l
Tags: upstream-2012.2~f3
ImportĀ upstreamĀ versionĀ 2012.2~f3

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from nova.api.openstack import extensions
20
20
from nova.api.openstack import wsgi
21
21
from nova.api.openstack import xmlutil
22
 
from nova.auth import manager
23
22
from nova.cloudpipe import pipelib
24
23
from nova import compute
25
24
from nova.compute import utils as compute_utils
58
57
    def __init__(self):
59
58
        self.compute_api = compute.API()
60
59
        self.network_api = network.API()
61
 
        self.auth_manager = manager.AuthManager()
62
60
        self.cloudpipe = pipelib.CloudPipe()
63
61
        self.setup()
64
62