From 25fb6f9a465d7371913c2898c6e3f701ed890b07 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 17 Sep 2018 02:23:21 -0700 Subject: [PATCH] fix compilation --- weed/command/filer_replication.go | 4 ++-- weed/replication/source/filer_source.go | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/weed/command/filer_replication.go b/weed/command/filer_replication.go index 25bca7c97..5fef89fc8 100644 --- a/weed/command/filer_replication.go +++ b/weed/command/filer_replication.go @@ -49,11 +49,11 @@ func runFilerReplicate(cmd *Command, args []string) bool { for { key, m, err := notificationInput.ReceiveMessage() if err != nil { - glog.Errorf("receive %s: +v", key, err) + glog.Errorf("receive %s: %+v", key, err) continue } if err = replicator.Replicate(key, m); err != nil { - glog.Errorf("replicate %s: +v", key, err) + glog.Errorf("replicate %s: %+v", key, err) } } diff --git a/weed/replication/source/filer_source.go b/weed/replication/source/filer_source.go index c3b575b6d..f6a4cc55f 100644 --- a/weed/replication/source/filer_source.go +++ b/weed/replication/source/filer_source.go @@ -54,15 +54,15 @@ func (fs *FilerSource) ReadPart(part string) (readCloser io.ReadCloser, err erro }) if err != nil { - glog.V(1).Infof("replication lookup volume id: %v", vid, err) - return nil, fmt.Errorf("replicationlookup volume id %v: %v", vid, err) + glog.V(1).Infof("replication lookup volume id %s: %v", vid, err) + return nil, fmt.Errorf("replication lookup volume id %s: %v", vid, err) } locations := vid2Locations[vid] if locations == nil || len(locations.Locations) == 0 { - glog.V(1).Infof("replication locate volume id: %v", vid, err) - return nil, fmt.Errorf("replication locate volume id %v: %v", vid, err) + glog.V(1).Infof("replication locate volume id %s: %v", vid, err) + return nil, fmt.Errorf("replication locate volume id %s: %v", vid, err) } fileUrl := fmt.Sprintf("http://%s/%s", locations.Locations[0].Url, part)