livemedia-creator: Ignore IGNORED errors in anaconda logs

This commit is contained in:
Brian C. Lane 2014-06-26 13:01:59 -07:00
parent 7c7677ff0a
commit 29de1d43a5

View File

@ -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:",