[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 18/20] python/qemu/qmp.py: re-raise OSError when encountered
From: |
Philippe Mathieu-Daudé |
Subject: |
Re: [PATCH 18/20] python/qemu/qmp.py: re-raise OSError when encountered |
Date: |
Wed, 7 Oct 2020 06:59:33 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 |
On 10/7/20 1:58 AM, John Snow wrote:
> Nested if conditions don't change when the exception block fires; we
> need to explicitly re-raise the error if we didn't intend to capture and
> suppress it.
>
> Signed-off-by: John Snow <jsnow@redhat.com>
> ---
> python/qemu/qmp.py | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/python/qemu/qmp.py b/python/qemu/qmp.py
> index d911999da1f..bdbd1e9bdbb 100644
> --- a/python/qemu/qmp.py
> +++ b/python/qemu/qmp.py
> @@ -169,9 +169,9 @@ def __get_events(self, wait: Union[bool, float] = False)
> -> None:
> try:
> self.__json_read()
> except OSError as err:
> - if err.errno == errno.EAGAIN:
> - # No data available
> - pass
> + # EAGAIN: No data available; not critical
> + if err.errno != errno.EAGAIN:
> + raise
> self.__sock.setblocking(True)
>
> # Wait for new events, if needed.
>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>