From: Jason Etheridge Date: Tue, 3 Dec 2019 20:33:42 +0000 (-0500) Subject: report just the first error via RSS X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ef128d67eababab171e58ddaae61da336a81da70;p=working%2Frandom.git report just the first error via RSS --- diff --git a/qa/test_output_webifier.pl b/qa/test_output_webifier.pl index a42aa6bc1..971463fbf 100755 --- a/qa/test_output_webifier.pl +++ b/qa/test_output_webifier.pl @@ -356,7 +356,9 @@ sub update_rss { ^; } my $fidx = 0; - foreach my $f (split /\n/, $fail) { + my @F = (split /\n/, $fail); + my $f = $F[0]; + if ($f) { if ($f =~ /^(\d+) (\d+) (.+)$/) { $f_subpage_count = $1; $f_error_count = $2;