mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-23 01:15:35 +08:00
fix: avoid error file name too long when writing a file (#4876)
This commit is contained in:

committed by
GitHub

parent
9d589b48e6
commit
44906f1f3b
@@ -99,7 +99,7 @@ func runFilerReplicate(cmd *Command, args []string) bool {
|
||||
if m.OldEntry != nil && m.NewEntry == nil {
|
||||
glog.V(1).Infof("delete: %s", key)
|
||||
} else if m.OldEntry == nil && m.NewEntry != nil {
|
||||
glog.V(1).Infof(" add: %s", key)
|
||||
glog.V(1).Infof("add: %s", key)
|
||||
} else {
|
||||
glog.V(1).Infof("modify: %s", key)
|
||||
}
|
||||
|
Reference in New Issue
Block a user