mirror of
https://github.com/Telecominfraproject/wlan-cloud-opensync-controller.git
synced 2026-03-22 06:39:20 +00:00
pom file cleanup, properties and launch changes re connecting to AllCloudInOne testing
This commit is contained in:
@@ -110,23 +110,23 @@ public class OpensyncExternalIntegrationCloud implements OpensyncExternalIntegra
|
||||
|
||||
public void apConnected(String apId, ConnectNodeInfo connectNodeInfo) {
|
||||
LOG.info("AP {} got connected to the gateway", apId);
|
||||
Customer customer = null;
|
||||
try {
|
||||
customer = customerServiceInterface.get(autoProvisionedCustomerId);
|
||||
LOG.debug("Got Customer {} for apId {}", customer.toPrettyString());
|
||||
} catch (Exception e) {
|
||||
LOG.error("Caught exception getting customer for Id {} for apId {}", autoProvisionedCustomerId, apId, e);
|
||||
}
|
||||
|
||||
Equipment ce = null;
|
||||
try {
|
||||
ce = getCustomerEquipment(apId);
|
||||
LOG.debug("Got Equipment {} for apId {}", ce.toPrettyString());
|
||||
} catch (Exception e) {
|
||||
LOG.error("Caught exception getting equipment for Id {} for apId {}", autoProvisionedEquipmentId, apId, e);
|
||||
Customer customer = null; try { customer =
|
||||
customerServiceInterface.get(autoProvisionedCustomerId);
|
||||
LOG.debug("Got Customer {} for apId {}", customer.toPrettyString()); } catch
|
||||
(Exception e) {
|
||||
LOG.error("Caught exception getting customer for Id {} for apId {}",
|
||||
autoProvisionedCustomerId, apId, e); }
|
||||
|
||||
Equipment ce = null; try { ce = getCustomerEquipment(apId);
|
||||
LOG.debug("Got Equipment {} for apId {}", ce.toPrettyString()); } catch
|
||||
(Exception e) {
|
||||
LOG.error("Caught exception getting equipment for Id {} for apId {}",
|
||||
autoProvisionedEquipmentId, apId, e);
|
||||
|
||||
}
|
||||
|
||||
|
||||
try {
|
||||
OvsdbSession ovsdbSession = ovsdbSessionMapInterface.getSession(apId);
|
||||
ovsdbSession.setEquipmentId(2);
|
||||
|
||||
Reference in New Issue
Block a user