mirror of https://github.com/milvus-io/milvus.git
fix: [skip e2e]use unique topic name for test pulsarCtl (#30364)
See also: #30363 Signed-off-by: yangxuan <xuan.yang@zilliz.com>pull/30377/head
parent
be8831b311
commit
e0f371c99b
|
@ -702,7 +702,7 @@ func TestPulsarClient_WithTenantAndNamespace(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestPulsarCtl(t *testing.T) {
|
||||
topic := "test"
|
||||
topic := "test-pulsar-ctl"
|
||||
subName := "hello"
|
||||
|
||||
pulsarAddress := getPulsarAddress()
|
||||
|
@ -763,9 +763,9 @@ func TestPulsarCtl(t *testing.T) {
|
|||
BufSize: 1024,
|
||||
SubscriptionInitialPosition: mqwrapper.SubscriptionPositionEarliest,
|
||||
})
|
||||
defer consumer2.Close()
|
||||
assert.NoError(t, err)
|
||||
assert.NotNil(t, consumer2)
|
||||
defer consumer2.Close()
|
||||
}
|
||||
|
||||
func NewPulsarAdminClient() {
|
||||
|
|
Loading…
Reference in New Issue