Browse Source

go vet

pull/664/head
Chris Lu 7 years ago
parent
commit
8b0718ac92
  1. 6
      weed/filer2/filechunks.go
  2. 1
      weed/topology/store_replicate.go
  3. 1
      weed/util/http_util.go

6
weed/filer2/filechunks.go

@ -1,7 +1,6 @@
package filer2 package filer2
import ( import (
"log"
"math" "math"
"sort" "sort"
@ -82,13 +81,12 @@ func ReadFromChunks(chunks []*filer_pb.FileChunk, offset int64, size int) (views
} }
func logPrintf(name string, visibles []*visibleInterval) { func logPrintf(name string, visibles []*visibleInterval) {
return
/*
log.Printf("%s len %d", name, len(visibles)) log.Printf("%s len %d", name, len(visibles))
for _, v := range visibles { for _, v := range visibles {
log.Printf("%s: => %+v", name, v) log.Printf("%s: => %+v", name, v)
} }
*/
} }
func nonOverlappingVisibleIntervals(chunks []*filer_pb.FileChunk) (visibles []*visibleInterval) { func nonOverlappingVisibleIntervals(chunks []*filer_pb.FileChunk) (visibles []*visibleInterval) {

1
weed/topology/store_replicate.go

@ -159,5 +159,4 @@ func distributedOperation(masterNode string, store *storage.Store, volumeId stor
glog.V(0).Infoln() glog.V(0).Infoln()
return fmt.Errorf("Failed to lookup for %d: %v", volumeId, lookupErr) return fmt.Errorf("Failed to lookup for %d: %v", volumeId, lookupErr)
} }
return nil
} }

1
weed/util/http_util.go

@ -141,7 +141,6 @@ func GetBufferStream(url string, values url.Values, allocatedBytes []byte, eachB
return err return err
} }
} }
return nil
} }
func GetUrlStream(url string, values url.Values, readFn func(io.Reader) error) error { func GetUrlStream(url string, values url.Values, readFn func(io.Reader) error) error {

Loading…
Cancel
Save