summaryrefslogtreecommitdiff
path: root/nova/context.py
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2012-04-04 10:28:26 -0400
committerRussell Bryant <rbryant@redhat.com>2012-04-04 11:47:55 -0400
commit14f0bc7c986b3ede8170a304b79011148f6a71a5 (patch)
tree6748a68a50382e87e69938ceb2929da388485f37 /nova/context.py
parentd9019f7aa6e1817d2aabcd59e7dde3d212b4e092 (diff)
downloadnova-14f0bc7c986b3ede8170a304b79011148f6a71a5.tar.gz
Use thread local storage from openstack.common.
nova.local was recently added to openstack-common. Remove nova.local and use openstack.common.local instead. One benefit of this change is that it is another step toward decoupling nova.rpc from the rest of nova. Change-Id: I0240f4291a81f8390d3f329a11f207a1453d7cab
Diffstat (limited to 'nova/context.py')
-rw-r--r--nova/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/context.py b/nova/context.py
index 160699a114..9555f9fc1a 100644
--- a/nova/context.py
+++ b/nova/context.py
@@ -21,8 +21,8 @@
import copy
-from nova import local
from nova import log as logging
+from nova.openstack.common import local
from nova import utils