summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rwxr-xr-xxenserver/etc_xapi.d_plugins_openvswitch-cfg-update2
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 47c764847..7b2774bf5 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -12,6 +12,7 @@ Chuck Short zulcss@ubuntu.com
Dan Wendlandt dan@nicira.com
Daniel Roman droman@nicira.com
David Erickson derickso@stanford.edu
+Dominic Curran dominic.curran@citrix.com
Ethan Jackson ethan@nicira.com
Gaetano Catalli gaetano.catalli@gmail.com
Glen Gibb grg@stanford.edu
diff --git a/xenserver/etc_xapi.d_plugins_openvswitch-cfg-update b/xenserver/etc_xapi.d_plugins_openvswitch-cfg-update
index a9a10e83f..ef4d11a8e 100755
--- a/xenserver/etc_xapi.d_plugins_openvswitch-cfg-update
+++ b/xenserver/etc_xapi.d_plugins_openvswitch-cfg-update
@@ -100,7 +100,7 @@ def update(session, args):
pool_mgmt_macs = {}
if new_controller:
recs = session.xenapi.PIF.get_all_records_where('field "management"="true"')
- for rec in recs:
+ for rec in recs.itervalues():
pool_mgmt_macs[rec.get('MAC')] = rec.get('device')
dib_changed = False