Re: [PATCH v3 09/13] python/aqmp-tui: Add QMP connection manager

2021-08-20 Thread John Snow
On Wed, Aug 18, 2021 at 3:36 PM John Snow wrote: > On Tue, Aug 17, 2021 at 3:07 PM Niteesh G. S. > wrote: > >> On Tue, Aug 17, 2021 at 10:21 AM John Snow wrote: >> >>> On Fri, Jul 30, 2021 at 4:19 PM G S Niteesh Babu >>> wrote: >>> >> > Is this required? I would have hoped that after calling d

Re: [PATCH v3 09/13] python/aqmp-tui: Add QMP connection manager

2021-08-18 Thread John Snow
On Tue, Aug 17, 2021 at 3:07 PM Niteesh G. S. wrote: > > > On Tue, Aug 17, 2021 at 10:21 AM John Snow wrote: > >> >> >> On Fri, Jul 30, 2021 at 4:19 PM G S Niteesh Babu >> wrote: >> >> [...] > >> >>> + >>> + >>> class App(QMPClient): >>> -def __init__(self, address: Union[str, Tuple[str,

Re: [PATCH v3 09/13] python/aqmp-tui: Add QMP connection manager

2021-08-17 Thread Niteesh G. S.
On Tue, Aug 17, 2021 at 10:21 AM John Snow wrote: > > > On Fri, Jul 30, 2021 at 4:19 PM G S Niteesh Babu > wrote: > >> Instead of manually connecting and disconnecting from the >> server. We now rely on the runstate to manage the QMP >> connection. >> >> Along with this the ability to reconnect

Re: [PATCH v3 09/13] python/aqmp-tui: Add QMP connection manager

2021-08-16 Thread John Snow
On Fri, Jul 30, 2021 at 4:19 PM G S Niteesh Babu wrote: > Instead of manually connecting and disconnecting from the > server. We now rely on the runstate to manage the QMP > connection. > > Along with this the ability to reconnect on certain exceptions > has also been added. > > Signed-off-by: G

[PATCH v3 09/13] python/aqmp-tui: Add QMP connection manager

2021-07-30 Thread G S Niteesh Babu
Instead of manually connecting and disconnecting from the server. We now rely on the runstate to manage the QMP connection. Along with this the ability to reconnect on certain exceptions has also been added. Signed-off-by: G S Niteesh Babu --- python/qemu/aqmp/aqmp_tui.py | 109