diff options
author | Michael Lando <michael.lando@intl.att.com> | 2018-10-17 09:42:46 +0300 |
---|---|---|
committer | Tal Gitelman <tg851x@intl.att.com> | 2018-10-17 12:10:52 +0000 |
commit | c18b0607bec3c42980b4937030bae7e0088fc277 (patch) | |
tree | 060e21e37ec343fd2bf4ba81b2bbdb4240e93165 /catalog-fe/src/main/java/org | |
parent | 0dc99b6dfb19a9100ad413d31544c78cfd6d120a (diff) |
fix issue that the user id is not assigned.
Change-Id: I99f19ef5b385c83877b303e5a74c58fe5954c892
Issue-ID: SDC-1839
Signed-off-by: Michael Lando <michael.lando@intl.att.com>
Diffstat (limited to 'catalog-fe/src/main/java/org')
-rw-r--r-- | catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java index 1aeb23e49d..31467b7edc 100644 --- a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java +++ b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java @@ -283,7 +283,7 @@ public class PortalServlet extends HttpServlet { if (cookie.getName().equals(Constants.ECOMP_PORTAL_COOKIE)) userIdcookie = cookie; if (userIdcookie != null) { - CipherUtil.decrypt(userIdcookie.getValue()); + userId = CipherUtil.decrypt(userIdcookie.getValue()); //Todo Remove after smoke test & review /*userId = CipherUtil.decrypt(userIdcookie.getValue(), PortalApiProperties.getProperty(PortalApiConstants.CSP_GATE_KEEPER_PROD_KEY));*/ |