diff options
| author | Brad Hall <brad@nicira.com> | 2011-11-24 07:44:02 -0800 |
|---|---|---|
| committer | Brad Hall <brad@nicira.com> | 2011-11-24 07:45:33 -0800 |
| commit | 94ed3e71ac5ea79fc4746d5d1b0c758744316cc6 (patch) | |
| tree | 14b47b6f6333b3a199b09ed607986edd51a5326a | |
| parent | 1670bccfa42c48e964c691e94c76359d56a73e59 (diff) | |
Fix for bug 894431
Make sure we set the correct interface id
Change-Id: I427284182cc0a5a456b43b777faba0a74f3816e7
| -rwxr-xr-x | nova/network/linux_net.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/network/linux_net.py b/nova/network/linux_net.py index 2b6e62792..520948624 100755 --- a/nova/network/linux_net.py +++ b/nova/network/linux_net.py @@ -1022,7 +1022,7 @@ class LinuxOVSInterfaceDriver(LinuxNetInterfaceDriver): '--', '--may-exist', 'add-port', bridge, dev, '--', 'set', 'Interface', dev, "type=internal", '--', 'set', 'Interface', dev, - "external-ids:iface-id=nova-%s" % dev, + "external-ids:iface-id=%s" % dev, '--', 'set', 'Interface', dev, "external-ids:iface-status=active", '--', 'set', 'Interface', dev, |
