using backquote as argument resulted in only first line as first argument to removeAsciiEscapes
[?]
Jun 10, 2011, 10:48 AM
WAZFSDSLS4XBU6I44LCEOCGGWDGAWJRBOO4QMPQHQSMPQIJDLVOACDependencies
- [2]
PY4WQF5Gremove ascii escapes from log in tail page and emails - [3]
KSD75RNJHydra/18: fixed uninitialized value error when logfile is null - [4]
ZEEZRG2Eclean up build page for build that failed with result - [5]
QUTWJR7P* Include more info in notification emails. - [6]
BOFOHCPKremoved debug print, added last 50 lines in failure emails - [7]
NZI7E2E3* hydra: handle case where logfile is empty - [8]
2R7GHSA4* hydra: added initial version of build graph - [9]
KA45EBF5* Send email if a build fails. - [*]
LBNVQXUB* Build the /build stuff in a separate controller. - [*]
7YBYT2LQ
Change contents
- replacement in src/lib/Hydra/Controller/Build.pm at line 58
$c->stash->{logtext} = removeAsciiEscapes(`tail -n 50 $path`);my $logtext = `tail -n 50 $path`;$c->stash->{logtext} = removeAsciiEscapes($logtext); - replacement in src/script/hydra_build.pl.in at line 159
my $logtext = defined $logfile && -e $logfile ? removeAsciiEscapes(`tail -$loglines $logfile`) : "No logfile available.\n";my $logtext = defined $logfile && -e $logfile ? `tail -$loglines $logfile` : "No logfile available.\n";$logtext = removeAsciiEscapes($logtext);