Re: [ovs-dev] [PATCH v4 2/2] python: replace pyOpenSSL with ssl

2021-11-03 Thread Ilya Maximets
On 11/1/21 15:27, Terry Wilson wrote: > Acked-by: Terry Wilson > Tested-by: Terry Wilson > > On Fri, Oct 29, 2021 at 6:12 PM Timothy Redaelli wrote: >> >> Currently, pyOpenSSL is half-deprecated upstream and so it's removed on >> some distributions (for example on CentOS Stream 9, >>

Re: [ovs-dev] [PATCH v4 2/2] python: replace pyOpenSSL with ssl

2021-11-01 Thread Terry Wilson
Acked-by: Terry Wilson Tested-by: Terry Wilson On Fri, Oct 29, 2021 at 6:12 PM Timothy Redaelli wrote: > > Currently, pyOpenSSL is half-deprecated upstream and so it's removed on > some distributions (for example on CentOS Stream 9, > https://issues.redhat.com/browse/CS-336), but since OVS

[ovs-dev] [PATCH v4 2/2] python: replace pyOpenSSL with ssl

2021-10-29 Thread Timothy Redaelli
Currently, pyOpenSSL is half-deprecated upstream and so it's removed on some distributions (for example on CentOS Stream 9, https://issues.redhat.com/browse/CS-336), but since OVS only supports Python 3 it's possible to replace pyOpenSSL with "import ssl" included in base Python 3. Stream recv