1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 05:23:28 +00:00

Merge pull request #2961 from zhlicen/master

Add lock while releasing session
This commit is contained in:
astaxie 2017-12-06 14:44:25 +08:00 committed by GitHub
commit 0fbbc67c3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)