refactoring

This commit is contained in:
Chris Lu
2020-03-23 22:54:02 -07:00
parent 38e73463f1
commit 782d776d2a
2 changed files with 13 additions and 12 deletions

View File

@@ -5,7 +5,6 @@ import (
"io"
"github.com/chrislusf/seaweedfs/weed/filer2"
"github.com/chrislusf/seaweedfs/weed/pb"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/util"
)
@@ -82,14 +81,3 @@ func duTraverseDirectory(writer io.Writer, filerClient filer_pb.FilerClient, dir
})
return
}
func (env *CommandEnv) WithFilerClient(fn func(filer_pb.SeaweedFilerClient) error) error {
filerGrpcAddress := fmt.Sprintf("%s:%d", env.option.FilerHost, env.option.FilerPort+10000)
return pb.WithGrpcFilerClient(filerGrpcAddress, env.option.GrpcDialOption, fn)
}
func (env *CommandEnv) AdjustedUrl(hostAndPort string) string {
return hostAndPort
}