pom file cleanup, properties and launch changes re connecting to AllCloudInOne testing

This commit is contained in:
Mike Hansen
2020-05-07 12:48:13 -04:00
parent a54ed68bac
commit 1d0ec5b203
5 changed files with 148 additions and 48 deletions

View File

@@ -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);