Exceptions now indicate cause where applicable
Potentially helping with debugging and contributing to faster issue resolution. Signed-off-by: Jiri Podivin <jpodivin@redhat.com> Change-Id: I4b3db6b6416c0b81ce0397e10c833b342dbc2c0e
This commit is contained in:
parent
dc2a135d42
commit
a12c531409
@ -483,7 +483,13 @@ class ValidationLogs(object):
|
|||||||
validation_id)
|
validation_id)
|
||||||
if validation_id else self.get_logfile_by_uuid(uuid))
|
if validation_id else self.get_logfile_by_uuid(uuid))
|
||||||
else:
|
else:
|
||||||
raise RuntimeError("uuid should be either a str or a list")
|
raise RuntimeError(
|
||||||
|
(
|
||||||
|
"uuid should be either a str or a list"
|
||||||
|
"but is {} instead"
|
||||||
|
).format(type(uuid))
|
||||||
|
)
|
||||||
|
|
||||||
res = []
|
res = []
|
||||||
for result in results:
|
for result in results:
|
||||||
vlog = ValidationLog(logfile=result)
|
vlog = ValidationLog(logfile=result)
|
||||||
|
Loading…
Reference in New Issue
Block a user