Use the method to retrieve the reporting host

This commit is contained in:
Saad Sahibjan 2020-03-04 14:10:06 +05:30 committed by inoshperera
parent 9da0bc8de0
commit a45d2d7cb0

View File

@ -177,9 +177,8 @@ public class DeviceInformationManagerImpl implements DeviceInformationManager {
}
private void publishEvents(Device device, DeviceInfo deviceInfo) {
String reportingHost = System.getProperty(DeviceManagementConstants.Report
.REPORTING_EVENT_HOST);
if (reportingHost != null && !reportingHost.isEmpty() && isPublishingEnabledForTenant()) {
String reportingHost = HttpReportingUtil.getReportingHost();
if (!StringUtils.isBlank(reportingHost) && isPublishingEnabledForTenant()) {
try {
DeviceDetailsWrapper deviceDetailsWrapper = new DeviceDetailsWrapper();
deviceDetailsWrapper.setDevice(device);