summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-01 06:27:25 +0000
committerGerrit Code Review <review@openstack.org>2013-06-01 06:27:25 +0000
commit5a510518d9e3097730466cfbf4ff25495c4a0302 (patch)
tree7c70163c8a7a7d96350fd4d736a23e82777a6dd2
parent5ec5dbbf3034c7e092f7513272ed7faf835de550 (diff)
parent4fde1c068f582cb76702189ffd39b1fc06529ee0 (diff)
downloadnova-5a510518d9e3097730466cfbf4ff25495c4a0302.tar.gz
nova-5a510518d9e3097730466cfbf4ff25495c4a0302.tar.xz
nova-5a510518d9e3097730466cfbf4ff25495c4a0302.zip
Merge "Only update cell capabilites once"
-rw-r--r--nova/cells/state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/cells/state.py b/nova/cells/state.py
index f1c77cef1..defa897a9 100644
--- a/nova/cells/state.py
+++ b/nova/cells/state.py
@@ -127,7 +127,7 @@ class CellStateManager(base.Base):
else:
values = set([value])
my_cell_capabs[name] = values
- self.my_cell_state.update_capabilities(my_cell_capabs)
+ self.my_cell_state.update_capabilities(my_cell_capabs)
def _refresh_cells_from_db(self, ctxt):
"""Make our cell info map match the db."""