Qianqian Hu

Fixing a bug in XosIntegration

Change-Id: I5b4ff467f591fd5e5dd74ea72932704db35d3bf1
......@@ -279,7 +279,7 @@ public class OnosXosIntegrationManager implements VoltTenantService {
response = builder.post(ClientResponse.class, json);
} catch (ClientHandlerException e) {
log.warn("Unable to contact REST server: {}", e.getMessage());
return "{ 'error' : 'oops no one home' }";
return "{ \"error\" : \"oops no one home\" }";
}
if (response.getStatus() != HTTP_CREATED) {
......