diff options
| author | Trey Morris <trey.morris@rackspace.com> | 2011-09-20 06:38:04 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-09-20 06:38:04 +0000 |
| commit | 7a64d31b447fcff331877c6bf7ab06ba49e1b086 (patch) | |
| tree | ac4238c01b06d63900e50558a69651e5616e60e1 /bin | |
| parent | 5db721df9b2733ac513bff12ffbdb2148a9d229d (diff) | |
| parent | eee411b90f7c6eda0de898489daff6e6aa006bb1 (diff) | |
removes warning set forth in d3 for deprecated setting of bridge automagically
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/nova-manage | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/bin/nova-manage b/bin/nova-manage index 4e9307273..995df827d 100755 --- a/bin/nova-manage +++ b/bin/nova-manage @@ -763,16 +763,7 @@ class NetworkCommands(object): bridge_required = ['nova.network.manager.FlatManager', 'nova.network.manager.FlatDHCPManager'] if FLAGS.network_manager in bridge_required: - # TODO(tr3buchet) - swap print statement and following line for - # raise statement in diablo 4 - print _('--bridge parameter required or FLAG ' - 'flat_network_bridge must be set to create networks\n' - 'WARNING! ACHTUNG! Setting the bridge to br100 ' - 'automatically is deprecated and will be removed in ' - 'Diablo milestone 4. Prepare yourself accordingly.') - time.sleep(10) - bridge = 'br100' - #raise exception.NetworkNotCreated(req='--bridge') + raise exception.NetworkNotCreated(req='--bridge') bridge_interface = bridge_interface or FLAGS.flat_interface or \ FLAGS.vlan_interface |
