Skip to content

Commit

Permalink
[backend] implement new full tree handling
Browse files Browse the repository at this point in the history
Can be enabled by setting $BSConfig::new_full_handling. Handle
with care.
  • Loading branch information
mlschroe committed Jan 10, 2014
1 parent 5f28f92 commit e318bbb
Show file tree
Hide file tree
Showing 2 changed files with 646 additions and 101 deletions.
2 changes: 2 additions & 0 deletions src/backend/bs_repserver
Expand Up @@ -360,6 +360,7 @@ sub getpackagebinaryversionlist {
}
for my $packid (sort keys %$gbininfo) {
next if %packids && !$packids{$packid};
next if $packid eq '_volatile' && !$packids;
my $bininfo = $gbininfo->{$packid};
filtersources_bininfo($bininfo) if $bininfo->{'.nosourceaccess'};
my @pres;
Expand Down Expand Up @@ -2458,6 +2459,7 @@ sub getkiwiproductpackages {
# fast if we have gbininfo
if ($gbininfo) {
for my $apackid (sort keys %$gbininfo) {
next if $apackid eq '_volatile';
my $bininfo = $gbininfo->{$apackid} || {};
my $needit;
for my $b (values %$bininfo) {
Expand Down

0 comments on commit e318bbb

Please sign in to comment.