Merge pull request #857 from rasika/geo-fence-issues

Avoid calling geo service when geoFencing disabled
revert-70aa11f8
Madhawa Perera 7 years ago committed by GitHub
commit 8934dc2055

@ -73,11 +73,13 @@ deviceModule = function () {
}
var userName = carbonUser.username + "@" + carbonUser.domain;
var locationHistory = [];
var geoServicesEnabled = devicemgtProps.serverConfig.geoLocationConfiguration.isEnabled;
if (geoServicesEnabled) {
try {
var fromDate = new Date();
fromDate.setHours(fromDate.getHours() - 2);
var toDate = new Date();
var serviceUrl = devicemgtProps["httpsURL"] + '/api/device-mgt/v1.0/geo-services/stats/' + deviceType + '/' + deviceId;
var serviceUrl = devicemgtProps["httpsURL"] + '/api/device-mgt/v1.0/geo-services/stats/' + deviceType + '/' + deviceId + '?from=' + fromDate + '&to=' + toDate;
serviceInvokers.XMLHttp.get(serviceUrl,
function (backendResponse) {
if (backendResponse.status === 200 && backendResponse.responseText) {
@ -87,6 +89,7 @@ deviceModule = function () {
} catch (e) {
log.error(e.message, e);
}
}
var locationInfo = {};
try {

Loading…
Cancel
Save