~eday/nova/api-tests

« back to all changes in this revision

Viewing changes to bin/nova-rsapi

  • Committer: Tarmac
  • Author(s): Michael Gundlach
  • Date: 2010-08-17 17:33:50 UTC
  • mfrom: (218.2.9 api)
  • Revision ID: hudson@openstack.org-20100817173350-s69li3zmb6gj32vu
See description of change... what's the difference between that message and this message again?

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from nova import flags
25
25
from nova import utils
26
26
from nova import wsgi
27
 
from nova.endpoint import rackspace
 
27
from nova.endpoint import newapi
28
28
 
29
29
FLAGS = flags.FLAGS
30
30
flags.DEFINE_integer('cc_port', 8773, 'cloud controller port')
31
31
 
32
32
if __name__ == '__main__':
33
33
    utils.default_flagfile()
34
 
    wsgi.run_server(rackspace.API(), FLAGS.cc_port)
 
34
    wsgi.run_server(newapi.APIVersionRouter(), FLAGS.cc_port)