Remove unused import.

Direct usage of the db has been eliminated from nova.service, so remove
the import.

Part of bp no-db-compute.

Change-Id: I909daccaf5dc0f26ad72914f90c9e2134e8decaf
This commit is contained in:
Russell Bryant 2013-01-14 17:21:15 -05:00
parent 6ec9e097f8
commit 13298999a8
2 changed files with 0 additions and 2 deletions

View File

@ -32,7 +32,6 @@ import greenlet
from nova import conductor
from nova import context
from nova import db
from nova import exception
from nova.openstack.common import cfg
from nova.openstack.common import eventlet_backdoor

View File

@ -112,7 +112,6 @@ class ServiceTestCase(test.TestCase):
self.host = 'foo'
self.binary = 'nova-fake'
self.topic = 'fake'
self.mox.StubOutWithMock(service, 'db')
self.mox.StubOutWithMock(db, 'service_create')
self.mox.StubOutWithMock(db, 'service_get_by_args')
self.flags(use_local=True, group='conductor')