From ab1c5867bd8e93d095a571e9337f0979a4ddd924 Mon Sep 17 00:00:00 2001 From: "Christopher Lott (cl778h)" Date: Thu, 12 Oct 2017 13:03:57 -0400 Subject: Repair Portal user-role assignment Issue: PORTAL-125 Change-Id: Ib8006c301d059d954b681a11a955924843548c6b Signed-off-by: Christopher Lott (cl778h) --- .../openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ecomp-portal-BE-common/src/main/java') 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); } -- cgit 1.2.3-korg