Re: [PATCH v4 2/4] python/qmp: increase read buffer size

2023-01-06 Thread John Snow
On Wed, Dec 7, 2022 at 1:29 PM Maksim Davydov wrote: > > Current 256KB is not enough for some real cases. As a possible solution > limit can be chosen to be the same as libvirt (10MB) > > Signed-off-by: Maksim Davydov This matches the patch accepted here: https://gitlab.com/qemu-project/python-q

[PATCH v4 2/4] python/qmp: increase read buffer size

2022-12-07 Thread Maksim Davydov
Current 256KB is not enough for some real cases. As a possible solution limit can be chosen to be the same as libvirt (10MB) Signed-off-by: Maksim Davydov --- python/qemu/qmp/qmp_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/qemu/qmp/qmp_client.py b/pyt