diff options
| author | Konstantin Lebedev <9497591+kmlebedev@users.noreply.github.com> | 2023-09-27 17:40:51 +0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-27 05:40:51 -0700 |
| commit | 44906f1f3b91b9def7e1424fec18a3237b1a02f0 (patch) | |
| tree | b01123aa276e62193e2a6fc704d78c776dd369e2 /weed/command | |
| parent | 9d589b48e6b59cf60df4e0c00fdc69edb62a216a (diff) | |
| download | seaweedfs-44906f1f3b91b9def7e1424fec18a3237b1a02f0.tar.xz seaweedfs-44906f1f3b91b9def7e1424fec18a3237b1a02f0.zip | |
fix: avoid error file name too long when writing a file (#4876)
Diffstat (limited to 'weed/command')
| -rw-r--r-- | weed/command/filer_replication.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/filer_replication.go b/weed/command/filer_replication.go index ec965a5e3..4fca8158a 100644 --- a/weed/command/filer_replication.go +++ b/weed/command/filer_replication.go @@ -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) } |
