bugfix: Logout cookies causing a conflict (#461)
This commit is contained in:
parent
9117163316
commit
ceb0a78180
|
|
@ -117,7 +117,10 @@ func forwardResponseHandlerLogout(md metadata.MD, w http.ResponseWriter) {
|
||||||
w,
|
w,
|
||||||
&http.Cookie{
|
&http.Cookie{
|
||||||
Name: "olivetin-sid-local",
|
Name: "olivetin-sid-local",
|
||||||
|
MaxAge: 31556952, // 1 year
|
||||||
Value: "",
|
Value: "",
|
||||||
|
HttpOnly: true,
|
||||||
|
Path: "/",
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue