mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
go fmt
This commit is contained in:
parent
4f6096c7f0
commit
ddec7b2bb9
|
@ -98,7 +98,7 @@ func (ma *MetaAggregator) subscribeToOneFiler(f *Filer, self string, filer strin
|
||||||
for {
|
for {
|
||||||
err := pb.WithFilerClient(filer, ma.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
|
err := pb.WithFilerClient(filer, ma.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
|
||||||
stream, err := client.SubscribeLocalMetadata(context.Background(), &filer_pb.SubscribeMetadataRequest{
|
stream, err := client.SubscribeLocalMetadata(context.Background(), &filer_pb.SubscribeMetadataRequest{
|
||||||
ClientName: "filer:"+self,
|
ClientName: "filer:" + self,
|
||||||
PathPrefix: "/",
|
PathPrefix: "/",
|
||||||
SinceNs: lastTsNs,
|
SinceNs: lastTsNs,
|
||||||
})
|
})
|
||||||
|
|
|
@ -60,7 +60,7 @@ func (mc *MetaCache) AtomicUpdateEntry(ctx context.Context, oldPath util.FullPat
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}else{
|
} else {
|
||||||
// println("unknown old directory:", oldDir)
|
// println("unknown old directory:", oldDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,13 @@ import (
|
||||||
// https://github.com/bazil/fuse/issues/130
|
// https://github.com/bazil/fuse/issues/130
|
||||||
|
|
||||||
var _ = fs.NodeAccesser(&Dir{})
|
var _ = fs.NodeAccesser(&Dir{})
|
||||||
|
|
||||||
func (dir *Dir) Access(ctx context.Context, req *fuse.AccessRequest) error {
|
func (dir *Dir) Access(ctx context.Context, req *fuse.AccessRequest) error {
|
||||||
return fuse.ENOSYS
|
return fuse.ENOSYS
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ = fs.NodeAccesser(&File{})
|
var _ = fs.NodeAccesser(&File{})
|
||||||
|
|
||||||
func (file *File) Access(ctx context.Context, req *fuse.AccessRequest) error {
|
func (file *File) Access(ctx context.Context, req *fuse.AccessRequest) error {
|
||||||
return fuse.ENOSYS
|
return fuse.ENOSYS
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,7 +101,6 @@ func TestCreateNeedleFromRequest(t *testing.T) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var textContent = `Redistribution and use in source and binary forms, with or without
|
var textContent = `Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions are
|
modification, are permitted provided that the following conditions are
|
||||||
met:
|
met:
|
||||||
|
|
|
@ -119,7 +119,7 @@ func iterateEcxFile(baseFileName string, processNeedleFn func(key types.NeedleId
|
||||||
}
|
}
|
||||||
|
|
||||||
func iterateEcjFile(baseFileName string, processNeedleFn func(key types.NeedleId) error) error {
|
func iterateEcjFile(baseFileName string, processNeedleFn func(key types.NeedleId) error) error {
|
||||||
if !util.FileExists(baseFileName+".ecj") {
|
if !util.FileExists(baseFileName + ".ecj") {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
ecjFile, openErr := os.OpenFile(baseFileName+".ecj", os.O_RDONLY, 0644)
|
ecjFile, openErr := os.OpenFile(baseFileName+".ecj", os.O_RDONLY, 0644)
|
||||||
|
|
|
@ -9,9 +9,7 @@ import (
|
||||||
"github.com/chrislusf/seaweedfs/weed/util"
|
"github.com/chrislusf/seaweedfs/weed/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
||||||
visitFn = func(path util.FullPath) (childDirectories []string, err error) {
|
visitFn = func(path util.FullPath) (childDirectories []string, err error) {
|
||||||
fmt.Printf(" visit %v ...\n", path)
|
fmt.Printf(" visit %v ...\n", path)
|
||||||
switch path {
|
switch path {
|
||||||
|
@ -37,14 +35,11 @@ var (
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
printMap = func(m map[string]*Node) {
|
printMap = func(m map[string]*Node) {
|
||||||
for k := range m {
|
for k := range m {
|
||||||
println(" >", k)
|
println(" >", k)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestBoundedTree(t *testing.T) {
|
func TestBoundedTree(t *testing.T) {
|
||||||
|
|
|
@ -54,6 +54,7 @@ func ungzipData(input []byte) ([]byte, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var decoder, _ = zstd.NewReader(nil)
|
var decoder, _ = zstd.NewReader(nil)
|
||||||
|
|
||||||
func unzstdData(input []byte) ([]byte, error) {
|
func unzstdData(input []byte) ([]byte, error) {
|
||||||
return decoder.DecodeAll(input, nil)
|
return decoder.DecodeAll(input, nil)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue