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
a6be2520c9
commit
402315f117
|
@ -94,7 +94,7 @@ func recursivelyTraverseDirectory(filerClient filer_pb.FilerClient, dirPath util
|
|||
if err := recursivelyTraverseDirectory(filerClient, subDir, visitEntry); err != nil {
|
||||
return err
|
||||
}
|
||||
}else {
|
||||
} else {
|
||||
if !visitEntry(dirPath, entry) {
|
||||
return nil
|
||||
}
|
||||
|
|
|
@ -246,4 +246,4 @@ func doSaveRemoteEntry(client filer_pb.SeaweedFilerClient, localDir string, exis
|
|||
return updateErr
|
||||
}
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
|
|
@ -83,8 +83,8 @@ func (c *commandRemoteUncache) uncacheContentData(commandEnv *CommandEnv, writer
|
|||
|
||||
err := commandEnv.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
||||
_, updateErr := client.UpdateEntry(context.Background(), &filer_pb.UpdateEntryRequest{
|
||||
Directory: string(dir),
|
||||
Entry: entry,
|
||||
Directory: string(dir),
|
||||
Entry: entry,
|
||||
})
|
||||
return updateErr
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue