Jonas Schäfer

Results 221 comments of Jonas Schäfer

Having this a constant is indeed not great (for starters, the default constant [isn’t going to work on 32 bit systems at all](https://github.com/PowerDNS/pdns/pull/8536/commits/fdfc41673e7addebadcdf5d6d1659ba1d3084fa2)). I’m not sure what a good way...

Confirmed with ``` Package: graphite-api Version: 1.1.3-2 ``` (Debian stretch/testing) I feel this might be related to downscaling happening. Is this something an upgrade would fix?

can you please try, in your shell: ```bash openssl s_client -connect FCM_SERVER_URL:FCM_SERVER_PORT < /dev/null | grep -i verif ``` (of course with the proper replacements for the variables above) and...

This is at least weird. I don’t think there should ever be a case where PyOpenSSL and openssl have different meanings on a certificates validity. Thanks for the info, I’ll...

Okay, this is very weird. The logs you give indicate that OpenSSL is telling us that the certificate is not valid right away; this is nothing aioxmpp does. When I...

Ah, I just saw the issue you linked. You can tell aioxmpp that you want to construct your own OpenSSL context by adpating the security layer constructed by make_security_layer (see...

Sorry, I was being unclear. I was giving a suggestion how to deal with [the comment given by the PyOpenSSL folks](https://github.com/pyca/pyopenssl/issues/823#issuecomment-468675241). @reaperhulk suggested to call load_verify_locations on the context; the...

> I run into this issue today, turns out aioxmpp already have support for this, you'll need to use `aioxmpp.security_layer.make(..., no_verify=True)`. Replacing `ssl_context_factory` isn't enough, the verify flag of the...

Hi @amjad-hub, I'd love to help, but your issue is really hard to read. Can you please apply appropriate formatting and also include the complete output of your script? Thanks!

You are running on windows. Please see https://docs.python.org/3/library/asyncio-platforms.html#windows. You have to use an event loop with support for `add_reader` and `add_writer`, which is on windows only the SelectorEventLoop. Note that...