1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-11 04:40:39 +00:00

session: fix #688

This commit is contained in:
astaxie
2014-07-16 23:05:38 +08:00
parent e6d6419a65
commit 1858f3073b
3 changed files with 0 additions and 17 deletions

View File

@ -81,12 +81,6 @@ func (rs *RedisSessionStore) SessionRelease(w http.ResponseWriter) {
c := rs.p.Get()
defer c.Close()
// if rs.values is empty, return directly
if len(rs.values) < 1 {
c.Do("DEL", rs.sid)
return
}
b, err := session.EncodeGob(rs.values)
if err != nil {
return