mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 06:55:27 +08:00
16 lines
247 B
Go
16 lines
247 B
Go
package reader
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestReader_startQueryNode(t *testing.T) {
|
|
|
|
pulsarURL := "pulsar://localhost:6650"
|
|
|
|
numOfQueryNode := 2
|
|
|
|
go StartQueryNode(pulsarURL, numOfQueryNode, 0)
|
|
StartQueryNode(pulsarURL, numOfQueryNode, 1)
|
|
}
|