seaweedfs/weed/mount/weedfs_grpc_server.go

18 lines
588 B
Go
Raw Normal View History

2022-04-02 22:14:37 +00:00
package mount
import (
"context"
2022-04-03 04:34:26 +00:00
"fmt"
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/pb/mount_pb"
2022-04-02 22:14:37 +00:00
)
func (wfs *WFS) Configure(ctx context.Context, request *mount_pb.ConfigureRequest) (*mount_pb.ConfigureResponse, error) {
2022-04-03 04:34:26 +00:00
if wfs.option.Collection == "" {
return nil, fmt.Errorf("mount quota only works when mounted to a new folder with a collection")
}
2022-04-02 22:14:37 +00:00
glog.V(0).Infof("quota changed from %d to %d", wfs.option.Quota, request.CollectionCapacity)
wfs.option.Quota = request.GetCollectionCapacity()
return &mount_pb.ConfigureResponse{}, nil
}