Skip to content

Commit

Permalink
[backend] fix publisher cache usage
Browse files Browse the repository at this point in the history
  • Loading branch information
mlschroe committed Jul 14, 2014
1 parent ed26582 commit e05a9e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/backend/bs_publish
Expand Up @@ -1717,7 +1717,8 @@ sub publish {
my @d = qw{arch name epoch version release disturl buildtime};
$res = {};
for (@$c) {
$res->{shift @d} = $_ if defined $_;
my $dd = shift @d;
$res->{$dd} = $_ if defined $_;
}
} else {
eval {
Expand Down

0 comments on commit e05a9e8

Please sign in to comment.