From 1dca4c0b7e864eff41ba92c2a0c10be9349b2a7b Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 7 Aug 2017 14:23:45 -0700 Subject: [PATCH] hashrefinflator uses subhashes, not . --- bin/debbugs-updatesqlcache | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/debbugs-updatesqlcache b/bin/debbugs-updatesqlcache index d945094..743e5fc 100755 --- a/bin/debbugs-updatesqlcache +++ b/bin/debbugs-updatesqlcache @@ -222,7 +222,7 @@ sub update_cache { # select all bugs which are in packages which have had a binary # association modified push @bugs, - map {$_->{'bug_binpackages.bug'}} + map {$_->{bug_binpackages}{bug}}} $s->resultset('BinAssociation')-> search_rs({'me.modified' => {'>=',$last_query_time}, }, @@ -236,7 +236,7 @@ sub update_cache { )->all(); # or a source association modified push @bugs, - map {$_->{'bug_srcpackages.bug'}} + map {$_->{bug_srcpackages}{bug}} $s->resultset('SrcAssociation')-> search_rs({'me.modified' => {'>=',$last_query_time}, }, -- 2.39.2