mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 11:21:52 +08:00
Related to #39095 https://go.dev/doc/modules/version-numbers Update pkg version according to golang dep version convention --------- Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
13 lines
383 B
Go
13 lines
383 B
Go
//go:build test
|
|
// +build test
|
|
|
|
package registry
|
|
|
|
import "github.com/milvus-io/milvus/pkg/v2/util/syncutil"
|
|
|
|
func ResetRegistration() {
|
|
localRegistry = make(map[AppendOperatorType]*syncutil.Future[AppendOperator])
|
|
localRegistry[AppendOperatorTypeMsgstream] = syncutil.NewFuture[AppendOperator]()
|
|
localRegistry[AppendOperatorTypeStreaming] = syncutil.NewFuture[AppendOperator]()
|
|
}
|