mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
volume: read dat files' last modified time no matter dat files are catWrite or readonly
This commit is contained in:
parent
5904d78bd4
commit
9af9f36b89
|
@ -31,12 +31,12 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind
|
||||||
}
|
}
|
||||||
if canWrite {
|
if canWrite {
|
||||||
v.dataFile, e = os.OpenFile(fileName+".dat", os.O_RDWR|os.O_CREATE, 0644)
|
v.dataFile, e = os.OpenFile(fileName+".dat", os.O_RDWR|os.O_CREATE, 0644)
|
||||||
v.lastModifiedTsSeconds = uint64(modifiedTime.Unix())
|
|
||||||
} else {
|
} else {
|
||||||
glog.V(0).Infoln("opening " + fileName + ".dat in READONLY mode")
|
glog.V(0).Infoln("opening " + fileName + ".dat in READONLY mode")
|
||||||
v.dataFile, e = os.Open(fileName + ".dat")
|
v.dataFile, e = os.Open(fileName + ".dat")
|
||||||
v.readOnly = true
|
v.readOnly = true
|
||||||
}
|
}
|
||||||
|
v.lastModifiedTsSeconds = uint64(modifiedTime.Unix())
|
||||||
if fileSize >= _SuperBlockSize {
|
if fileSize >= _SuperBlockSize {
|
||||||
alreadyHasSuperBlock = true
|
alreadyHasSuperBlock = true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue