Closed
Description
AFAIK, the mapping between cookie, session and ticket are as follow:
cookie key --> cookie value(also session key)
session key --> session value(also service ticket)
service ticket --> authentication info.
Lines 356 to 365 in 87e080a
c.sessions.Get(cookie.Value)
gets the session value(also the service ticket), while c.deleteSession()
should receive the session key as the parameter. We passed session value as session key, so the deleteSession
does not work here.