apache / apache/rocketmq-client-python

when does it support tls?

未关闭
#139 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
Python
星标
305
派生
98
PR 合并指标
30 天内没有已合并 PR

描述

java client can support connect with rocketmq-server in tls,
but python client does not have tls option,
when does it support?

java client example:

```java
public class Main {
public static void main(String[] args) {
DefaultMQProducer producer = new DefaultMQProducer("ProducerGroupName");
producer.setNamesrvAddr("192.168.0.1:8100");
//producer.setUseTLS(true); //if rocketmq server use ssl mode,use this option
try {
producer.start();
Message msg = new Message("TopicTest",
"TagA",
"OrderID188",
"Hello world".getBytes(RemotingHelper.DEFAULT_CHARSET));
SendResult sendResult = producer.send(msg);
System.out.printf("%s%n", sendResult);

} catch (Exception e) {
e.printStackTrace();

}
producer.shutdown();
}
}
```

python client does not have this option:
![image](https://github.com/apache/rocketmq-client-python/assets/40893643/8c6a8ca8-a3c9-4a94-8ae0-2aadf406664c)

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。