Browse Source

fix

pull/2252/head
Chris Lu 3 years ago
parent
commit
a6be2520c9
  1. 2
      weed/server/filer_grpc_server_remote.go

2
weed/server/filer_grpc_server_remote.go

@ -115,7 +115,7 @@ func (fs *FilerServer) DownloadToLocal(ctx context.Context, req *filer_pb.Downlo
RemotePath: string(dest), RemotePath: string(dest),
}) })
if fetchAndWriteErr != nil { if fetchAndWriteErr != nil {
return fmt.Errorf("volume server %s fetchAndWrite %s/$s: %v", assignResult.Url, req.Directory, req.Name, fetchAndWriteErr)
return fmt.Errorf("volume server %s fetchAndWrite %s: %v", assignResult.Url, dest, fetchAndWriteErr)
} }
return nil return nil
}) })

Loading…
Cancel
Save