add back AdjustedUrl() related code

This commit is contained in:
Chris Lu
2021-01-28 14:36:29 -08:00
parent 9292796ec2
commit 990fa69bfe
10 changed files with 31 additions and 2 deletions

View File

@@ -102,6 +102,10 @@ func (ce *CommandEnv) WithFilerClient(fn func(filer_pb.SeaweedFilerClient) error
}
func (ce *CommandEnv) AdjustedUrl(location *filer_pb.Location) string {
return location.Url
}
func parseFilerUrl(entryPath string) (filerServer string, filerPort int64, path string, err error) {
if strings.HasPrefix(entryPath, "http") {
var u *url.URL