Jonathan Hart

Minor fix for pushing fabric VLANs

Change-Id: I9f27cb24df147c64051d6da66cc9c392d063246c
...@@ -432,9 +432,9 @@ public class OnosXOSIntegrationManager implements VoltTenantService { ...@@ -432,9 +432,9 @@ public class OnosXOSIntegrationManager implements VoltTenantService {
432 .type(JSON_UTF_8.toString()); 432 .type(JSON_UTF_8.toString());
433 433
434 try { 434 try {
435 - builder.post(ClientResponse.class, node); 435 + builder.post(ClientResponse.class, node.toString());
436 } catch (ClientHandlerException e) { 436 } catch (ClientHandlerException e) {
437 - log.warn("Unable to contact fabric REST server:", e.getMessage()); 437 + log.warn("Unable to contact fabric REST server: {}", e.getMessage());
438 return; 438 return;
439 } 439 }
440 } 440 }
......