mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-08-01 17:46:55 +08:00
Check for history file errors as well
This commit is contained in:
parent
492a91e0b0
commit
7ce3bee0c0
@ -148,9 +148,11 @@ func loadHistory() {
|
|||||||
|
|
||||||
func saveHistory() {
|
func saveHistory() {
|
||||||
if f, err := os.Create(historyPath); err != nil {
|
if f, err := os.Create(historyPath); err != nil {
|
||||||
fmt.Printf("Error writing history file: %v\n", err)
|
fmt.Printf("Error creating history file: %v\n", err)
|
||||||
} else {
|
} else {
|
||||||
line.WriteHistory(f)
|
if _, err = line.WriteHistory(f); err != nil {
|
||||||
|
fmt.Printf("Error writing history file: %v\n", err)
|
||||||
|
}
|
||||||
f.Close()
|
f.Close()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user