diff --git a/apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java b/apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java index faa8ea546c..21603d52ca 100644 --- a/apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java +++ b/apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java @@ -338,7 +338,7 @@ public class OnosXOSIntegrationManager implements VoltTenantService { JsonObject json = JsonObject.readFrom(jsonString); if (json.get("computeNodeName") != null) { - ConnectPoint point = nodeToPort.get(json.get("computeNodeName")); + ConnectPoint point = nodeToPort.get(json.get("computeNodeName").asString()); provisionFabric(VlanId.vlanId(Short.parseShort(newTenant.vlanId())), point);