aboutsummaryrefslogtreecommitdiff
path: root/weed/replication
diff options
context:
space:
mode:
authorRyan Russell <ryanrussell@users.noreply.github.com>2022-09-14 12:11:31 -0500
committerGitHub <noreply@github.com>2022-09-14 10:11:31 -0700
commitd54eb9966f35f02eb25baecec000ec77c0587049 (patch)
treead384f0aaf4c0b8d26610f952478f37bb27fa54c /weed/replication
parentd734fff322b48485a1eb9461919d549ce65ce167 (diff)
downloadseaweedfs-d54eb9966f35f02eb25baecec000ec77c0587049.tar.xz
seaweedfs-d54eb9966f35f02eb25baecec000ec77c0587049.zip
refactor: `Directory` readability (#3665)
Diffstat (limited to 'weed/replication')
-rw-r--r--weed/replication/sink/localsink/local_sink.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/replication/sink/localsink/local_sink.go b/weed/replication/sink/localsink/local_sink.go
index 5a953353b..e69045336 100644
--- a/weed/replication/sink/localsink/local_sink.go
+++ b/weed/replication/sink/localsink/local_sink.go
@@ -80,7 +80,7 @@ func (localsink *LocalSink) CreateEntry(key string, entry *filer_pb.Entry, signa
dir := filepath.Dir(key)
if _, err := os.Stat(dir); os.IsNotExist(err) {
- glog.V(4).Infof("Create Direcotry key: %s", dir)
+ glog.V(4).Infof("Create Directory key: %s", dir)
if err = os.MkdirAll(dir, 0755); err != nil {
return err
}