~0x44/nova/bug838466

« back to all changes in this revision

Viewing changes to nova/exception.py

  • Committer: Tarmac
  • Author(s): Trey Morris
  • Date: 2011-07-27 23:19:11 UTC
  • mfrom: (1130.12.10 lp810563)
  • Revision ID: tarmac-20110727231911-ix8g5c1qoe4nxr20
updates handling of arguments in nova-manage network create.
updates a few of the arguments to nova-manage and related help.
updates nova-manage to raise proper exceptions.

updates network manager create_networks to handle ipv6 more correctly and efficiently.

flat_network_bridge FLAG now defaults to None.

Show diffs side-by-side

added added

removed removed

Lines of Context:
373
373
    message = _("Cannot find SR to read/write VDI.")
374
374
 
375
375
 
 
376
class NetworkNotCreated(NovaException):
 
377
    message = _("%(req)s is required to create a network.")
 
378
 
 
379
 
376
380
class NetworkNotFound(NotFound):
377
381
    message = _("Network %(network_id)s could not be found.")
378
382