[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/5] python/aqmp: fix ConnectError string method
From: |
John Snow |
Subject: |
[PATCH 2/5] python/aqmp: fix ConnectError string method |
Date: |
Thu, 11 Nov 2021 09:37:16 -0500 |
When ConnectError is used to wrap an Exception that was initialized
without an error message, we are treated to a traceback with a rubbish
line like this:
... ConnectError: Failed to establish session:
Correct this to use the name of an exception as a fallback message:
... ConnectError: Failed to establish session: EOFError
Better!
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/qemu/aqmp/protocol.py | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/python/qemu/aqmp/protocol.py b/python/qemu/aqmp/protocol.py
index 860b79512d..5190b33b13 100644
--- a/python/qemu/aqmp/protocol.py
+++ b/python/qemu/aqmp/protocol.py
@@ -79,7 +79,11 @@ def __init__(self, error_message: str, exc: Exception):
self.exc: Exception = exc
def __str__(self) -> str:
- return f"{self.error_message}: {self.exc!s}"
+ cause = str(self.exc)
+ if not cause:
+ # If there's no error string, use the exception name.
+ cause = exception_summary(self.exc)
+ return f"{self.error_message}: {cause}"
class StateError(AQMPError):
--
2.31.1
- [PATCH 0/5] python/aqmp: improve support for device-crash-test, John Snow, 2021/11/11
- [PATCH 2/5] python/aqmp: fix ConnectError string method,
John Snow <=
- [PATCH 3/5] scripts/device-crash-test: simplify Exception handling, John Snow, 2021/11/11
- [PATCH 5/5] scripts/device-crash-test: hide tracebacks for QMP connect errors, John Snow, 2021/11/11
- [PATCH 4/5] scripts/device-crash-test: don't emit AQMP connection errors to stdout, John Snow, 2021/11/11
- [PATCH 1/5] python/aqmp: Fix disconnect during capabilities negotiation, John Snow, 2021/11/11
- Re: [PATCH 0/5] python/aqmp: improve support for device-crash-test, Thomas Huth, 2021/11/12