1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-03 17:40:18 +00:00
This commit is contained in:
astaxie
2014-01-05 15:21:50 +08:00
parent 9cbd475701
commit 31bdb793cf
2 changed files with 6 additions and 5 deletions

View File

@ -529,7 +529,7 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
// session init
if SessionOn {
context.Input.CruSession = GlobalSessions.SessionStart(w, r)
defer context.Input.CruSession.SessionRelease()
defer context.Input.CruSession.SessionRelease(w)
}
if !utils.InSlice(strings.ToLower(r.Method), HTTPMETHOD) {