Update tracker get token api

merge-requests/899/head
Rushdi Mohamed 3 years ago
parent 6b3294bd60
commit a521985e98

@ -472,11 +472,10 @@ public class DeviceManagementServiceImpl implements DeviceManagementService {
public Response getTraccarUserToken() { public Response getTraccarUserToken() {
if (HttpReportingUtil.isTrackerEnabled()) { if (HttpReportingUtil.isTrackerEnabled()) {
String loggedUserName = CarbonContext.getThreadLocalCarbonContext().getUsername(); String currentUser = CarbonContext.getThreadLocalCarbonContext().getUsername();
JSONObject obj = new JSONObject(DeviceAPIClientServiceImpl.returnUser(loggedUserName)); JSONObject obj = new JSONObject(DeviceAPIClientServiceImpl.returnUser(currentUser));
log.info("================="); log.info("=================");
log.info(loggedUserName);
log.info(obj.toString()); log.info(obj.toString());
log.info("=================="); log.info("==================");
if(obj.has("error")){ if(obj.has("error")){

Loading…
Cancel
Save