mirror of https://github.com/milvus-io/milvus.git
8 lines
111 B
Go
8 lines
111 B
Go
|
package tasks
|
||
|
|
||
|
import "github.com/cockroachdb/errors"
|
||
|
|
||
|
var (
|
||
|
ErrTaskQueueFull = errors.New("TaskQueueFull")
|
||
|
)
|