1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-02 07:06:44 +02:00
This commit is contained in:
Chris Lu 2020-09-01 21:59:26 -07:00
parent 37234bf3f8
commit 2815bbe6c0
2 changed files with 2 additions and 3 deletions

View file

@ -22,8 +22,8 @@ const (
) )
var ( var (
OS_UID = uint32(os.Getuid()) OS_UID = uint32(os.Getuid())
OS_GID = uint32(os.Getgid()) OS_GID = uint32(os.Getgid())
) )
type Filer struct { type Filer struct {

View file

@ -5,7 +5,6 @@ import (
"github.com/chrislusf/seaweedfs/weed/filer" "github.com/chrislusf/seaweedfs/weed/filer"
) )
func (store *MongodbStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) { func (store *MongodbStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
return filer.ErrKvNotImplemented return filer.ErrKvNotImplemented
} }