Re: [PATCH 3/5] python/qemu: qmp: Make accept()'s timeout configurable

2020-01-30 Thread Philippe Mathieu-Daudé
On 1/9/20 1:18 AM, John Snow wrote: On 12/27/19 8:40 AM, Wainer dos Santos Moschetta wrote: Currently the timeout of QEMUMonitorProtocol.accept() is hard-coded to 15 seconds. This added the parameter `timeout` so the value can be configured by the user. Signed-off-by: Wainer dos Santos Moschett

Re: [PATCH 3/5] python/qemu: qmp: Make accept()'s timeout configurable

2020-01-08 Thread John Snow
On 12/27/19 8:40 AM, Wainer dos Santos Moschetta wrote: > Currently the timeout of QEMUMonitorProtocol.accept() is > hard-coded to 15 seconds. This added the parameter `timeout` > so the value can be configured by the user. > > Signed-off-by: Wainer dos Santos Moschetta > --- > python/qemu/qm

Re: [PATCH 3/5] python/qemu: qmp: Make accept()'s timeout configurable

2019-12-27 Thread Philippe Mathieu-Daudé
On 12/27/19 2:40 PM, Wainer dos Santos Moschetta wrote: Currently the timeout of QEMUMonitorProtocol.accept() is hard-coded to 15 seconds. This added the parameter `timeout` so the value can be configured by the user. Signed-off-by: Wainer dos Santos Moschetta --- python/qemu/qmp.py | 5 +++--

[PATCH 3/5] python/qemu: qmp: Make accept()'s timeout configurable

2019-12-27 Thread Wainer dos Santos Moschetta
Currently the timeout of QEMUMonitorProtocol.accept() is hard-coded to 15 seconds. This added the parameter `timeout` so the value can be configured by the user. Signed-off-by: Wainer dos Santos Moschetta --- python/qemu/qmp.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --g