Skip to content
Snippets Groups Projects
Commit 626dccc7 authored by Leo Gordon's avatar Leo Gordon
Browse files

bugfix [to 0b75aa0d] : check that status is defined before mapping

parent 89ee7b98
No related branches found
No related tags found
No related merge requests found
......@@ -209,7 +209,7 @@ sub parse_report_source_line {
foreach (@lines) {
if( /^(\w+\s+\w+\s+\d+\s+\d+:\d+:\d+):\s+Completed\s<(\w+)>(?:\.|;\s+(\w+))/ ) {
$died = _yearless_2_datetime($1);
$cause_of_death = $status_2_cod{$3};
$cause_of_death = $3 && $status_2_cod{$3};
$exit_status = $2 . ($3 ? "/$3" : '');
}
elsif(/^\s*EXCEPTION STATUS:\s*(.*?)\s*$/) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment