From: jiankang.fan Date: Wed, 7 Feb 2018 09:22:03 +0000 (+0800) Subject: Fix build_json_report issue for openSUSE_42.3 X-Git-Tag: submit/devel/20190730.074511~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2120f38b5d042ef7d9f5e7fab866169600b9aeee;p=tools%2Fdepanneur.git Fix build_json_report issue for openSUSE_42.3 Must specify the value for allow_nonref parameter when call to_json interface Change-Id: I1380657489a6653cd16d6247c112cd59f94e7853 Signed-off-by: jiankang.fan --- diff --git a/depanneur b/depanneur index 6cb4c16..0644956 100755 --- a/depanneur +++ b/depanneur @@ -2221,7 +2221,7 @@ sub build_html_report sub build_json_report { open(my $report_json, '>', "$localrepo/$dist/$arch/report.json"); - print $report_json to_json(\%build_status_json); + print $report_json to_json(\%build_status_json,{allow_nonref => 1}); close($report_json); }