summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common/src/main
diff options
context:
space:
mode:
authorChristopher Lott (cl778h) <clott@research.att.com>2017-10-12 13:03:57 -0400
committerChristopher Lott (cl778h) <clott@research.att.com>2017-10-12 13:04:35 -0400
commitab1c5867bd8e93d095a571e9337f0979a4ddd924 (patch)
tree491bd0dff3bef6389080a6d3e73ba0eb197a444c /ecomp-portal-BE-common/src/main
parent792b5d463eb37917926a5af64d46a0441b63eadf (diff)
Repair Portal user-role assignment
Issue: PORTAL-125 Change-Id: Ib8006c301d059d954b681a11a955924843548c6b Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
Diffstat (limited to 'ecomp-portal-BE-common/src/main')
-rw-r--r--ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java
index 110bf2ec..f5bdca77 100644
--- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java
+++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java
@@ -1552,7 +1552,7 @@ public class UserRolesCommonServiceImpl {
protected EPUser getUser(String userId, EPApp app, ApplicationsRestClientService applicationsRestClientService)
throws HTTPException {
- return applicationsRestClientService.get(EPUser.class, app.getId(), String.format("/user/%s", userId));
+ return applicationsRestClientService.get(EPUser.class, app.getId(), String.format("/user/%s", userId), true);
}