Benoît Knecht
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
3 deletions
-
weed/storage/volume_info/volume_info.go
|
|
@ -76,9 +76,8 @@ func SaveVolumeInfo(fileName string, volumeInfo *volume_server_pb.VolumeInfo) er |
|
|
|
return fmt.Errorf("failed to marshal %s: %v", fileName, marshalErr) |
|
|
|
} |
|
|
|
|
|
|
|
writeErr := util.WriteFile(fileName, text, 0755) |
|
|
|
if writeErr != nil { |
|
|
|
return fmt.Errorf("failed to write %s: %v", fileName, writeErr) |
|
|
|
if err := util.WriteFile(fileName, text, 0644); err != nil { |
|
|
|
return fmt.Errorf("failed to write %s: %v", fileName, err) |
|
|
|
} |
|
|
|
|
|
|
|
return nil |
|
|
|