Fixing tenanted username

This commit is contained in:
Ace 2018-10-17 20:30:17 +05:30
parent 1721824d53
commit 4aee621039

View File

@ -96,9 +96,8 @@ public class GeoLocationBasedServiceImpl implements GeoLocationBasedService {
sortByFields.add(sortByField);
// this is the user who initiates the request
String authorizedUser = MultitenantUtils.getTenantAwareUsername(
CarbonContext.getThreadLocalCarbonContext().getUsername() + "@" +
CarbonContext.getThreadLocalCarbonContext().getTenantDomain());
String authorizedUser = CarbonContext.getThreadLocalCarbonContext().getUsername() + "@" +
CarbonContext.getThreadLocalCarbonContext().getTenantDomain();
try {
String tenantDomain = MultitenantUtils.getTenantDomain(authorizedUser);