~soren/nova/iptables-security-groups

« back to all changes in this revision

Viewing changes to nova/endpoint/cloud.py

  • Committer: Jesse Andrews
  • Date: 2010-07-15 23:13:48 UTC
  • mto: This revision was merged to the branch mainline in revision 142.
  • Revision ID: jesse@gigantor.local-20100715231348-vml8qldrdofx79do
reorder imports spacing

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
import logging
28
28
import os
29
29
import time
30
 
 
31
 
 
32
30
from twisted.internet import defer
33
31
 
34
32
from nova import datastore
 
33
from nova import exception
35
34
from nova import flags
36
35
from nova import rpc
37
36
from nova import utils
38
 
from nova import exception
39
37
from nova.auth import rbac
40
38
from nova.auth import users
41
39
from nova.compute import model
44
42
from nova.endpoint import images
45
43
from nova.volume import storage
46
44
 
 
45
 
47
46
FLAGS = flags.FLAGS
48
47
 
49
48
flags.DEFINE_string('cloud_topic', 'cloud', 'the topic clouds listen on')