Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-07-10 Thread Ilya Maximets
On 7/10/23 17:36, Terry Wilson wrote: > On Mon, Jul 10, 2023 at 10:32 AM Terry Wilson wrote: >> >> I accidentally forgot to click reply-to-all. >> >> On Fri, Jun 30, 2023 at 10:27 AM Ilya Maximets wrote: >>> >>> On 6/30/23 16:54, Adrian Moreno wrote: On 6/30/23 14:35, Ilya

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-07-10 Thread Terry Wilson
On Mon, Jul 10, 2023 at 10:32 AM Terry Wilson wrote: > > I accidentally forgot to click reply-to-all. > > On Fri, Jun 30, 2023 at 10:27 AM Ilya Maximets wrote: > > > > On 6/30/23 16:54, Adrian Moreno wrote: > > > > > > > > > On 6/30/23 14:35, Ilya Maximets wrote: > > >> On 6/30/23 14:23, Adrian

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-07-10 Thread Terry Wilson
I accidentally forgot to click reply-to-all. On Fri, Jun 30, 2023 at 10:27 AM Ilya Maximets wrote: > > On 6/30/23 16:54, Adrian Moreno wrote: > > > > > > On 6/30/23 14:35, Ilya Maximets wrote: > >> On 6/30/23 14:23, Adrian Moreno wrote: > >>> > >>> > >>> On 6/30/23 13:40, Ilya Maximets wrote: >

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-30 Thread Ilya Maximets
On 6/30/23 16:54, Adrian Moreno wrote: > > > On 6/30/23 14:35, Ilya Maximets wrote: >> On 6/30/23 14:23, Adrian Moreno wrote: >>> >>> >>> On 6/30/23 13:40, Ilya Maximets wrote: On 6/30/23 12:39, Adrian Moreno wrote: > > > On 6/14/23 23:07, Terry Wilson wrote: >> This adds a

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-30 Thread Adrian Moreno
On 6/30/23 14:35, Ilya Maximets wrote: On 6/30/23 14:23, Adrian Moreno wrote: On 6/30/23 13:40, Ilya Maximets wrote: On 6/30/23 12:39, Adrian Moreno wrote: On 6/14/23 23:07, Terry Wilson wrote: This adds a Python version of the async DNS support added in: 771680d96 DNS: Add basic

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-30 Thread Ilya Maximets
On 6/30/23 14:23, Adrian Moreno wrote: > > > On 6/30/23 13:40, Ilya Maximets wrote: >> On 6/30/23 12:39, Adrian Moreno wrote: >>> >>> >>> On 6/14/23 23:07, Terry Wilson wrote: This adds a Python version of the async DNS support added in: 771680d96 DNS: Add basic support for

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-30 Thread Adrian Moreno
On 6/30/23 13:40, Ilya Maximets wrote: On 6/30/23 12:39, Adrian Moreno wrote: On 6/14/23 23:07, Terry Wilson wrote: This adds a Python version of the async DNS support added in: 771680d96 DNS: Add basic support for asynchronous DNS resolving The above version uses the unbound C library,

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-30 Thread Ilya Maximets
On 6/30/23 12:39, Adrian Moreno wrote: > > > On 6/14/23 23:07, Terry Wilson wrote: >> This adds a Python version of the async DNS support added in: >> >> 771680d96 DNS: Add basic support for asynchronous DNS resolving >> >> The above version uses the unbound C library, and this >> implimentation

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-30 Thread Adrian Moreno
On 6/14/23 23:07, Terry Wilson wrote: This adds a Python version of the async DNS support added in: 771680d96 DNS: Add basic support for asynchronous DNS resolving The above version uses the unbound C library, and this implimentation uses the SWIG-wrapped Python version of that. In the

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-27 Thread Terry Wilson
On Fri, Jun 23, 2023 at 11:20 AM Ilya Maximets wrote: > > On 6/23/23 17:15, Terry Wilson wrote: > > Just checking in on this. I see a single test failure > > https://github.com/ovsrobot/ovs/actions/runs/5272193494 'linux clang > > test asan' but it looks like something related to bfd, so

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-23 Thread Ilya Maximets
On 6/23/23 17:15, Terry Wilson wrote: > Just checking in on this. I see a single test failure > https://github.com/ovsrobot/ovs/actions/runs/5272193494 'linux clang > test asan' but it looks like something related to bfd, so definitely > not the python patch here. This one is unrelated, yes. >

Re: [ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-23 Thread Terry Wilson
Just checking in on this. I see a single test failure https://github.com/ovsrobot/ovs/actions/runs/5272193494 'linux clang test asan' but it looks like something related to bfd, so definitely not the python patch here. Anything I need to do? On Wed, Jun 14, 2023 at 4:07 PM Terry Wilson wrote: >

[ovs-dev] [PATCH v3] python: Add async DNS support

2023-06-14 Thread Terry Wilson
This adds a Python version of the async DNS support added in: 771680d96 DNS: Add basic support for asynchronous DNS resolving The above version uses the unbound C library, and this implimentation uses the SWIG-wrapped Python version of that. In the event that the Python unbound library is not