livemedia-creator: Ignore IGNORED errors in anaconda logs
This commit is contained in:
parent
7c7677ff0a
commit
29de1d43a5
@ -135,7 +135,11 @@ class LogRequestHandler(SocketServer.BaseRequestHandler):
|
||||
Check a line to see if it contains an error indicating installation failure
|
||||
|
||||
:param str line: log line to check for failure
|
||||
|
||||
If the line contains IGNORED it will be skipped.
|
||||
"""
|
||||
if "IGNORED" in line:
|
||||
return
|
||||
simple_tests = ["Traceback (",
|
||||
"Out of memory:",
|
||||
"Call Trace:",
|
||||
|
Loading…
Reference in New Issue
Block a user