diff options
| author | Sam Morrison <sorrison@gmail.com> | 2013-05-31 15:14:05 +1000 |
|---|---|---|
| committer | Sam Morrison <sorrison@gmail.com> | 2013-05-31 15:14:05 +1000 |
| commit | 4fde1c068f582cb76702189ffd39b1fc06529ee0 (patch) | |
| tree | 19c69a4d681fd1c1e2f558da89179d3c6cb6c3b9 | |
| parent | 6c8706b70c3bb386e01742116306a0a7942956be (diff) | |
| download | nova-4fde1c068f582cb76702189ffd39b1fc06529ee0.tar.gz nova-4fde1c068f582cb76702189ffd39b1fc06529ee0.tar.xz nova-4fde1c068f582cb76702189ffd39b1fc06529ee0.zip | |
Only update cell capabilites once
Simple indent level fix
Change-Id: Ic137259f9461e767ecd256d9ac1297256bd9dbfe
| -rw-r--r-- | nova/cells/state.py | 2 |
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.""" |
