Hyunsun Moon
Committed by Ray Milkey

Fixed get index of ovsdb device ID

Change-Id: I4416718b7f9549cfa2635cb2b52174bf6318bf45
......@@ -131,7 +131,7 @@ public class OvsdbBridgeConfig extends AbstractHandlerBehaviour
if (splits == null || splits.length < 1) {
return null;
}
IpAddress ipAddress = IpAddress.valueOf(splits[0]);
IpAddress ipAddress = IpAddress.valueOf(splits[1]);
return new OvsdbNodeId(ipAddress, 0);
}
......
......@@ -129,7 +129,7 @@ public class OvsdbTunnelConfig extends AbstractHandlerBehaviour
if (splits == null || splits.length < 1) {
return null;
}
IpAddress ipAddress = IpAddress.valueOf(splits[0]);
IpAddress ipAddress = IpAddress.valueOf(splits[1]);
return new OvsdbNodeId(ipAddress, 0);
}
......