cubefs/blobstore/common/errors/scheduler.go
JasonHu520 2d90e0f96e perf(scheduler): update volume cache failed error replace with error code
@formatter:off

Signed-off-by: JasonHu520 <huzongchao@oppo.com>
2024-11-12 11:01:05 +08:00

36 lines
1.1 KiB
Go

// Copyright 2022 The CubeFS Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
package errors
import (
"errors"
)
const (
CodeNotingTodo = 700
CodeUpdateVolCacheFreq = 701
)
var (
ErrIllegalTaskType = errors.New("illegal task type")
ErrCanNotDropped = errors.New("disk can not dropped")
ErrUnexpectMigrationTask = errors.New("unexpect migration task")
ErrIllegalDiskID = errors.New("illegal disk id")
// error code
ErrNothingTodo = Error(CodeNotingTodo)
ErrUpdateVolCacheFreq = Error(CodeUpdateVolCacheFreq)
)