apache / apache/rocketmq-client-python
when does it support tls?
- Langage dominant
- Python
- Étoiles
- 305
- Forks
- 98
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
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:

Guide de contribution
Ouvrir le guide de contribution
Piste de recherche
No files or tests are named. Start by locating the Python client's connection setup and configuration surface, using the Java setUseTLS(true) example as the behavioral reference. Done means the Python client exposes TLS configuration and can connect to a TLS-enabled rocketmq-server.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Évaluation
- Stack technique
- python
- Domaine
- networking, security
- Type d'issue
- Fonctionnalité
- Difficulté
- 4/5
- Temps estimé
- 3-5 jours
- Activité
- À l'abandon
- Clarté
- À clarifier
- Accessibilité débutants
- 35/100