Re: [PATCH] python: honour message limit when using pre-opened socket

2023-05-17 Thread John Snow
On Mon, May 15, 2023 at 5:14 PM John Snow wrote: > > On Mon, Mar 20, 2023 at 8:27 PM John Snow wrote: > > > > On Mon, Mar 20, 2023 at 8:20 AM Vladimir Sementsov-Ogievskiy > > wrote: > > > > > > On 20.03.23 13:54, Daniel P. Berrangé wrote: > > > > The default message recv limit in asyncio is smal

Re: [PATCH] python: honour message limit when using pre-opened socket

2023-05-15 Thread John Snow
On Mon, Mar 20, 2023 at 8:27 PM John Snow wrote: > > On Mon, Mar 20, 2023 at 8:20 AM Vladimir Sementsov-Ogievskiy > wrote: > > > > On 20.03.23 13:54, Daniel P. Berrangé wrote: > > > The default message recv limit in asyncio is smaller than our needs, so > > > when opening connections we override

Re: [PATCH] python: honour message limit when using pre-opened socket

2023-03-20 Thread John Snow
On Mon, Mar 20, 2023 at 8:20 AM Vladimir Sementsov-Ogievskiy wrote: > > On 20.03.23 13:54, Daniel P. Berrangé wrote: > > The default message recv limit in asyncio is smaller than our needs, so > > when opening connections we override it. This was done when opening a > > connection using a socket a

Re: [PATCH] python: honour message limit when using pre-opened socket

2023-03-20 Thread Vladimir Sementsov-Ogievskiy
On 20.03.23 13:54, Daniel P. Berrangé wrote: The default message recv limit in asyncio is smaller than our needs, so when opening connections we override it. This was done when opening a connection using a socket address, but was missed when using a pre-opened socket file descriptor. This latent

Re: [PATCH] python: honour message limit when using pre-opened socket

2023-03-20 Thread Marc-André Lureau
On Mon, Mar 20, 2023 at 2:54 PM Daniel P. Berrangé wrote: > The default message recv limit in asyncio is smaller than our needs, so > when opening connections we override it. This was done when opening a > connection using a socket address, but was missed when using a > pre-opened socket file des

[PATCH] python: honour message limit when using pre-opened socket

2023-03-20 Thread Daniel P . Berrangé
The default message recv limit in asyncio is smaller than our needs, so when opening connections we override it. This was done when opening a connection using a socket address, but was missed when using a pre-opened socket file descriptor. This latent bug was exposed when the QEMUMachine class was