Wojciech Banaś
Wojciech Banaś
I use this library with python 3, and did not notice any problems.
There is a very simple solution: django-admin.py makemessages --settings=[project.settings] -a -e haml,html Where: - project.settings - Django configuration file where module "hamlpy" is configured properly.
For humans, it is actually ok. For machine processing it is not good. For example, for a logcheck program, it is problematic to prepare appropriate rules. I don't know about...
It seems to me that there should be a function that filters newline characters, before saving the logs to a file. I found a similar problem in the logs: ```...
Are you sure this is a problem with the SSL certificate? "MQTTException: 30" error means "Connection timeout"
There is a new version of the library in which encrypted connections work well on esp32 already. I don't have rp2-pico, so it would be good for someone to test...
It is difficult for me to say what is causing the problem. The SSL libraries used in the micropython code for ESP32 (mbedtls) and ESP8266 (axtls) are different. The Raspberry...
If you can find the exact place in the code where it freezes, maybe I can improve it. I've also noticed that it sometimes crashes in some way. It happened...
There is a new version of umqtt-simple2=v2.2.0. Probably the problems have been fixed in this library, please let us know if they still occur.
In mqtt_reconnect function, the variable mqtt_client has the value null. Change to: ``` def mqtt_reconnect(mqtt_client): .... ``` Also add resubscribe, see below: ``` while c.is_conn_issue(): c.reconnect() else: c.resubscribe() ``` I...