From 6b4ad2d7d2f431c153e9e2a655271932b8b378f0 Mon Sep 17 00:00:00 2001 From: Chris Behrens Date: Thu, 1 Nov 2012 11:03:08 +0000 Subject: Cells: Add cells API extension Enables cells-related functionality such as adding neighbor cells, listing neighbor cells, and showing the capabilities of the local cell. Implements blueprint nova-compute-cells DocImpact Change-Id: Iacc1e68721a7867aeaf233903cbe6d18f09ad96e --- bin/nova-manage | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin') diff --git a/bin/nova-manage b/bin/nova-manage index 67212a198..99053df63 100755 --- a/bin/nova-manage +++ b/bin/nova-manage @@ -1056,11 +1056,11 @@ class CellCommands(object): ctxt = context.get_admin_context() db.cell_create(ctxt, values) - @args('--cell_id', dest='cell_id', metavar='', - help='ID of the cell to delete') - def delete(self, cell_id): + @args('--cell_name', dest='cell_name', metavar='', + help='Name of the cell to delete') + def delete(self, cell_name): ctxt = context.get_admin_context() - db.cell_delete(ctxt, cell_id) + db.cell_delete(ctxt, cell_name) def list(self): ctxt = context.get_admin_context() -- cgit