milvus/reader/read_node/reader_test.go
zhenshan.cao 3acd55f675 Fix config path error
Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
2020-09-18 01:53:18 +08:00

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)
}