mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
issue: #41544 - add lock interceptor into wal. - use recovery and shardmanager to replace the original implementation of segment assignment. - remove redundant implementation and unittest. - remove redundant proto definition. - use 2 streamingnode in e2e. --------- Signed-off-by: chyezh <chyezh@outlook.com>
14 lines
277 B
Go
14 lines
277 B
Go
package walimplstest
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/walimpls"
|
|
)
|
|
|
|
func TestWALImplsTest(t *testing.T) {
|
|
enableFenceError.Store(false)
|
|
defer enableFenceError.Store(true)
|
|
walimpls.NewWALImplsTestFramework(t, 100, &openerBuilder{}).Run()
|
|
}
|