mirror of
https://github.com/ehang-io/nps.git
synced 2025-07-01 19:50:42 +00:00
fix file not close before rename
This commit is contained in:
parent
3ec790d98d
commit
f6063e0d6c
@ -3,6 +3,7 @@ package file
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"github.com/astaxie/beego/logs"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
@ -151,7 +152,6 @@ func storeSyncMapToFile(m sync.Map, filePath string) {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
defer file.Close()
|
||||
m.Range(func(key, value interface{}) bool {
|
||||
var b []byte
|
||||
var err error
|
||||
@ -191,6 +191,11 @@ func storeSyncMapToFile(m sync.Map, filePath string) {
|
||||
return true
|
||||
})
|
||||
_ = file.Sync()
|
||||
_ = file.Close()
|
||||
// must close file first, then rename it
|
||||
err = os.Rename(filePath+".tmp", filePath)
|
||||
if err != nil {
|
||||
logs.Error(err, "store to file err, data will lost")
|
||||
}
|
||||
// replace the file, maybe provides atomic operation
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user