mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
wording change
This commit is contained in:
parent
0deda9b638
commit
82f6a6838f
|
@ -92,7 +92,7 @@ func (v *Volume) load(alsoLoadIndex bool) error {
|
||||||
glog.V(2).Infoln("open file", fileName+".cdb")
|
glog.V(2).Infoln("open file", fileName+".cdb")
|
||||||
if v.nm, e = OpenCdbMap(fileName + ".cdb"); e != nil {
|
if v.nm, e = OpenCdbMap(fileName + ".cdb"); e != nil {
|
||||||
if os.IsNotExist(e) {
|
if os.IsNotExist(e) {
|
||||||
glog.V(0).Infof("Failed to read cdb file :%s, fall back to normal readonly mode.", fileName)
|
glog.V(0).Infof("Failed to read cdb file %s, fall back to normal readonly mode.", fileName)
|
||||||
} else {
|
} else {
|
||||||
glog.V(0).Infof("%s.cdb open errro:%s", fileName, e.Error())
|
glog.V(0).Infof("%s.cdb open errro:%s", fileName, e.Error())
|
||||||
return e
|
return e
|
||||||
|
@ -109,7 +109,7 @@ func (v *Volume) load(alsoLoadIndex bool) error {
|
||||||
glog.V(1).Infoln("open to write file", fileName+".idx")
|
glog.V(1).Infoln("open to write file", fileName+".idx")
|
||||||
indexFile, e = os.OpenFile(fileName+".idx", os.O_RDWR|os.O_CREATE, 0644)
|
indexFile, e = os.OpenFile(fileName+".idx", os.O_RDWR|os.O_CREATE, 0644)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
return fmt.Errorf("cannot create Volume Data %s.dat: %s", fileName, e.Error())
|
return fmt.Errorf("cannot write Volume Data %s.dat: %s", fileName, e.Error())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
glog.V(0).Infoln("loading file", fileName+".idx", "readonly", v.readOnly)
|
glog.V(0).Infoln("loading file", fileName+".idx", "readonly", v.readOnly)
|
||||||
|
|
Loading…
Reference in a new issue