1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-24 11:44:14 +00:00

Update sess_file.go

This commit is contained in:
HSoshiant 2017-04-17 12:37:54 -04:00 committed by GitHub
parent 323a1c4214
commit 7886e69236

View File

@ -78,6 +78,8 @@ func (fs *FileSessionStore) SessionID() string {
// SessionRelease Write file session to local file with Gob string
func (fs *FileSessionStore) SessionRelease(w http.ResponseWriter) {
filepder.lock.Lock()
defer filepder.lock.Unlock()
b, err := EncodeGob(fs.values)
if err != nil {
SLogger.Println(err)