This commit is contained in:
Chris Lu 2019-03-30 23:09:16 -07:00
parent 97406333a5
commit 78ac2bef3c
7 changed files with 18 additions and 18 deletions

View file

@ -40,13 +40,13 @@ func (store *CassandraStore) initialize(keyspace string, hosts []string) (err er
return return
} }
func (store *CassandraStore) BeginTransaction(ctx context.Context) (context.Context, error){ func (store *CassandraStore) BeginTransaction(ctx context.Context) (context.Context, error) {
return ctx, nil return ctx, nil
} }
func (store *CassandraStore) CommitTransaction(ctx context.Context) error{ func (store *CassandraStore) CommitTransaction(ctx context.Context) error {
return nil return nil
} }
func (store *CassandraStore) RollbackTransaction(ctx context.Context) error{ func (store *CassandraStore) RollbackTransaction(ctx context.Context) error {
return nil return nil
} }

View file

@ -46,13 +46,13 @@ func (store *LevelDBStore) initialize(dir string) (err error) {
return return
} }
func (store *LevelDBStore) BeginTransaction(ctx context.Context) (context.Context, error){ func (store *LevelDBStore) BeginTransaction(ctx context.Context) (context.Context, error) {
return ctx, nil return ctx, nil
} }
func (store *LevelDBStore) CommitTransaction(ctx context.Context) error{ func (store *LevelDBStore) CommitTransaction(ctx context.Context) error {
return nil return nil
} }
func (store *LevelDBStore) RollbackTransaction(ctx context.Context) error{ func (store *LevelDBStore) RollbackTransaction(ctx context.Context) error {
return nil return nil
} }

View file

@ -34,13 +34,13 @@ func (store *MemDbStore) Initialize(configuration util.Configuration) (err error
return nil return nil
} }
func (store *MemDbStore) BeginTransaction(ctx context.Context) (context.Context, error){ func (store *MemDbStore) BeginTransaction(ctx context.Context) (context.Context, error) {
return ctx, nil return ctx, nil
} }
func (store *MemDbStore) CommitTransaction(ctx context.Context) error{ func (store *MemDbStore) CommitTransaction(ctx context.Context) error {
return nil return nil
} }
func (store *MemDbStore) RollbackTransaction(ctx context.Context) error{ func (store *MemDbStore) RollbackTransaction(ctx context.Context) error {
return nil return nil
} }

View file

@ -19,13 +19,13 @@ type UniversalRedisStore struct {
Client redis.UniversalClient Client redis.UniversalClient
} }
func (store *UniversalRedisStore) BeginTransaction(ctx context.Context) (context.Context, error){ func (store *UniversalRedisStore) BeginTransaction(ctx context.Context) (context.Context, error) {
return ctx, nil return ctx, nil
} }
func (store *UniversalRedisStore) CommitTransaction(ctx context.Context) error{ func (store *UniversalRedisStore) CommitTransaction(ctx context.Context) error {
return nil return nil
} }
func (store *UniversalRedisStore) RollbackTransaction(ctx context.Context) error{ func (store *UniversalRedisStore) RollbackTransaction(ctx context.Context) error {
return nil return nil
} }

View file

@ -38,7 +38,7 @@ func (fs *FilerServer) AtomicRenameEntry(ctx context.Context, req *filer_pb.Atom
return &filer_pb.AtomicRenameEntryResponse{}, nil return &filer_pb.AtomicRenameEntryResponse{}, nil
} }
func (fs *FilerServer) moveEntry(ctx context.Context, oldParent filer2.FullPath, entry *filer2.Entry, newParent filer2.FullPath, newName string) (error) { func (fs *FilerServer) moveEntry(ctx context.Context, oldParent filer2.FullPath, entry *filer2.Entry, newParent filer2.FullPath, newName string) error {
if entry.IsDirectory() { if entry.IsDirectory() {
if err := fs.moveFolderSubEntries(ctx, oldParent, entry, newParent, newName); err != nil { if err := fs.moveFolderSubEntries(ctx, oldParent, entry, newParent, newName); err != nil {
return err return err
@ -47,7 +47,7 @@ func (fs *FilerServer) moveEntry(ctx context.Context, oldParent filer2.FullPath,
return fs.moveSelfEntry(ctx, oldParent, entry, newParent, newName) return fs.moveSelfEntry(ctx, oldParent, entry, newParent, newName)
} }
func (fs *FilerServer) moveFolderSubEntries(ctx context.Context, oldParent filer2.FullPath, entry *filer2.Entry, newParent filer2.FullPath, newName string) (error) { func (fs *FilerServer) moveFolderSubEntries(ctx context.Context, oldParent filer2.FullPath, entry *filer2.Entry, newParent filer2.FullPath, newName string) error {
currentDirPath := oldParent.Child(entry.Name()) currentDirPath := oldParent.Child(entry.Name())
newDirPath := newParent.Child(newName) newDirPath := newParent.Child(newName)
@ -80,7 +80,7 @@ func (fs *FilerServer) moveFolderSubEntries(ctx context.Context, oldParent filer
return nil return nil
} }
func (fs *FilerServer) moveSelfEntry(ctx context.Context, oldParent filer2.FullPath, entry *filer2.Entry, newParent filer2.FullPath, newName string) (error) { func (fs *FilerServer) moveSelfEntry(ctx context.Context, oldParent filer2.FullPath, entry *filer2.Entry, newParent filer2.FullPath, newName string) error {
oldPath, newPath := oldParent.Child(entry.Name()), newParent.Child(newName) oldPath, newPath := oldParent.Child(entry.Name()), newParent.Child(newName)

View file

@ -54,7 +54,7 @@ func (c *commandFsLs) Do(args []string, commandEnv *commandEnv, writer io.Writer
if path == "/" { if path == "/" {
dir, name = "/", "" dir, name = "/", ""
} else { } else {
dir, name = path[0 : len(path)-1], "" dir, name = path[0:len(path)-1], ""
} }
} }

View file

@ -39,7 +39,7 @@ func (c *commandFsTree) Do(args []string, commandEnv *commandEnv, writer io.Writ
if path == "/" { if path == "/" {
dir, name = "/", "" dir, name = "/", ""
} else { } else {
dir, name = path[0 : len(path)-1], "" dir, name = path[0:len(path)-1], ""
} }
} }
@ -124,7 +124,7 @@ func (p *Prefix) getPrefix(level int, isLastChild bool) string {
} }
if isLastChild { if isLastChild {
sb.WriteString("└──") sb.WriteString("└──")
p.removeMarker(level); p.removeMarker(level)
} else { } else {
sb.WriteString("├──") sb.WriteString("├──")
} }