Hyunsun Moon
Committed by Gerrit Code Review

Fix missing target for ovsdb controller

Change-Id: I3277f6bae3eb4b0dd7310bfbafe212b7e9374179
...@@ -603,6 +603,7 @@ public class DefaultOvsdbClient ...@@ -603,6 +603,7 @@ public class DefaultOvsdbClient
603 Controller controller = (Controller) TableGenerator 603 Controller controller = (Controller) TableGenerator
604 .createTable(dbSchema, OvsdbTable.CONTROLLER); 604 .createTable(dbSchema, OvsdbTable.CONTROLLER);
605 if (controller != null) { 605 if (controller != null) {
606 + controller.setTarget(target);
606 if (controllerUuid == null) { 607 if (controllerUuid == null) {
607 608
608 insertConfig(OvsdbConstant.CONTROLLER, "_uuid", 609 insertConfig(OvsdbConstant.CONTROLLER, "_uuid",
......