Re: [PATCH 11/14] python: ensure QEMUQtestProtocol closes its socket

2025-08-19 Thread Daniel P . Berrangé
On Tue, Aug 19, 2025 at 04:12:12PM -0400, John Snow wrote: > On Tue, Jul 15, 2025 at 10:32 AM Daniel P. Berrangé > wrote: > > > > While QEMUQtestMachine closes the socket that was passed to > > QEMUQtestProtocol, the python resource leak manager still > > believes that the copy QEMUQtestProtocol

Re: [PATCH 11/14] python: ensure QEMUQtestProtocol closes its socket

2025-08-19 Thread John Snow
On Tue, Jul 15, 2025 at 10:32 AM Daniel P. Berrangé wrote: > > While QEMUQtestMachine closes the socket that was passed to > QEMUQtestProtocol, the python resource leak manager still > believes that the copy QEMUQtestProtocol holds is open. We > must explicitly call close to avoid this leak warnni

[PATCH 11/14] python: ensure QEMUQtestProtocol closes its socket

2025-07-15 Thread Daniel P . Berrangé
While QEMUQtestMachine closes the socket that was passed to QEMUQtestProtocol, the python resource leak manager still believes that the copy QEMUQtestProtocol holds is open. We must explicitly call close to avoid this leak warnnig. Signed-off-by: Daniel P. Berrangé --- python/qemu/machine/qtest.