You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2017/02/15 17:45:02 UTC

cxf-fediz git commit: FEDIZ-191 - The HomeRealmReminder cookie is not deleted after logout in the IdP

Repository: cxf-fediz
Updated Branches:
  refs/heads/1.3.x-fixes a09efb9f1 -> ed1f97c90


FEDIZ-191 - The HomeRealmReminder cookie is not deleted after logout in the IdP


Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/ed1f97c9
Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/ed1f97c9
Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/ed1f97c9

Branch: refs/heads/1.3.x-fixes
Commit: ed1f97c90bf180e7f794a0afd739df4bbb1d04d8
Parents: a09efb9
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Wed Feb 15 17:08:13 2017 +0000
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Wed Feb 15 17:25:26 2017 +0000

----------------------------------------------------------------------
 .../main/java/org/apache/cxf/fediz/service/idp/util/WebUtils.java   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/ed1f97c9/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/util/WebUtils.java
----------------------------------------------------------------------
diff --git a/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/util/WebUtils.java b/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/util/WebUtils.java
index 4484312..611b183 100644
--- a/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/util/WebUtils.java
+++ b/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/util/WebUtils.java
@@ -192,6 +192,7 @@ public final class WebUtils {
         Cookie cookie = new Cookie(cookieName, cookieValue);
         cookie.setSecure(true);
         cookie.setMaxAge(-1);
+        cookie.setPath("/fediz-idp");
         httpServletResponse.addCookie(cookie);
     }