Skip to content
Snippets Groups Projects
Commit eb6ba07c authored by mmurphy's avatar mmurphy
Browse files

correcting "Can't use an undefined value as an ARRAY reference at...

correcting "Can't use an undefined value as an ARRAY reference at /opt/resmon/lib/Core/ChefLastGoodRun.pm line 88." error
parent 22916d22
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ sub handler {
$report = decode_json($report);
$metrics{elapsed} = [ $report->{elapsed_time}, 'F' ];
$metrics{change_count} = [ $report->{change_count}, 'I' ];
$metrics{change_count} = [ $report->{change_count}, 'F' ];
return \%metrics;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment