Fix of incorrect url for getTenantProfiles in REST Client
This commit is contained in:
parent
667a4459aa
commit
72ea3273c7
@ -2188,7 +2188,7 @@ public class RestClient implements ClientHttpRequestInterceptor, Closeable {
|
|||||||
Map<String, String> params = new HashMap<>();
|
Map<String, String> params = new HashMap<>();
|
||||||
addPageLinkToParam(params, pageLink);
|
addPageLinkToParam(params, pageLink);
|
||||||
return restTemplate.exchange(
|
return restTemplate.exchange(
|
||||||
baseURL + "/api/tenantProfiles" + getUrlParams(pageLink),
|
baseURL + "/api/tenantProfiles?" + getUrlParams(pageLink),
|
||||||
HttpMethod.GET,
|
HttpMethod.GET,
|
||||||
HttpEntity.EMPTY,
|
HttpEntity.EMPTY,
|
||||||
new ParameterizedTypeReference<PageData<TenantProfile>>() {
|
new ParameterizedTypeReference<PageData<TenantProfile>>() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user