Compare commits

...

1 Commits

Author SHA1 Message Date
Dora Korpar 4835ddfe65 [test] 2018-07-20 15:43:02 -07:00
1 changed files with 4 additions and 1 deletions

View File

@ -1008,7 +1008,10 @@ class UtapiClient {
return this._pushLocalCache(params, 'locationStorage', null,
log, callback);
}
return callback();
return this.getLocationMetric(location, reqUid, (err, bytesStored) => {
console.log('\n\n-------LOCATION METRIC AFTER PUSH-------\n\n', bytesStored, '\n\n');
return callback();
});
});
}