From 29de1d43a5f9f2574d94824bdc0dd45742763abb Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Thu, 26 Jun 2014 13:01:59 -0700 Subject: [PATCH] livemedia-creator: Ignore IGNORED errors in anaconda logs --- src/sbin/livemedia-creator | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/sbin/livemedia-creator b/src/sbin/livemedia-creator index 0fac7e05..47eec2ce 100755 --- a/src/sbin/livemedia-creator +++ b/src/sbin/livemedia-creator @@ -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:",