runout-at
runout-at
following works at least under debian: `tls={'ca_certs':"/etc/ssl/certs/ca-certificates.crt"}` but i think ca_certs should be auto-detected from the system if not provided. the documentation should have some useful examples for ca_certs
same on python 3.10. would be great if this could be fixed (i'm not into C that much) even the python wrappers could be improved to return data for storing...
it seems working with `select fields` and struct does not work very well. I cant' figure out a proper way to fill the selected value of a select field into...
@MattBrittan I wonder why you are closing this without asking for more information if something is not clear. In my opinion the examples are there. And as i found out...
Running on Debian bookworm, Python 3.11 i found that _tls_ dictionary is missing a default for _ca_certs_. I would expect the default is _/etc/ssl/certs/ca-certificates.crt_ in Debian. Following works at least...
Sorry, creating a new issue from the old one messed something up.
I have no access to the system right now. I will reinvestigate in some days as this is an ARM architecture. Couldn't reproduce it on AMD64 right now. thx @MattBrittan...
Yesterday I just tried a subscribe which did work. The problem occurs only on publishing and I did look at the code now. The doc inside the code of publish.simple...
Maybe it would be enough to set tls variable if it's _None_ inside publish.multiple like ``` if tls is None: tls = {} ``` and remove the ``` if tls...
> It's wanted to have tls=None for the default. That the means not using TLS but clear-text which is the default and a supported behavior. thx. for clarification. > Your...