mirror of https://github.com/milvus-io/milvus.git
[skip ci]Improve error message in mqclient (#10240)
Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>pull/10262/head
parent
1493aa1f65
commit
a2b8add4e2
|
@ -33,7 +33,7 @@ func GetPulsarClientInstance(opts pulsar.ClientOptions) (*pulsarClient, error) {
|
|||
once.Do(func() {
|
||||
c, err := pulsar.NewClient(opts)
|
||||
if err != nil {
|
||||
log.Error("Set pulsar client failed, error", zap.Error(err))
|
||||
log.Error("Failed to set pulsar client: ", zap.Error(err))
|
||||
return
|
||||
}
|
||||
cli := &pulsarClient{client: c}
|
||||
|
|
Loading…
Reference in New Issue