Skip to content

Commit

Permalink
[backend] 'myarch' is actually called 'arch' in gctx
Browse files Browse the repository at this point in the history
  • Loading branch information
mlschroe committed Dec 15, 2015
1 parent 72d4b26 commit e5a4fb4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/backend/bs_sched
Expand Up @@ -231,7 +231,7 @@ sub sendrelsyncupdate {
my ($gctx, $prp, $isfinished) = @_;

print " updating relsync information\n";
my $myarch = $gctx->{'myarch'};
my $myarch = $gctx->{'arch'};
my $reporoot = $gctx->{'reporoot'};

my ($projid, $repoid) = split('/', $prp, 2);
Expand Down Expand Up @@ -268,7 +268,7 @@ sub mergerelsyncfile {
my ($gctx, $prp) = @_;

print " merging relsync data\n";
my $myarch = $gctx->{'myarch'};
my $myarch = $gctx->{'arch'};
my $reporoot = $gctx->{'reporoot'};
my $relsync_merge = BSUtil::retrieve("$reporoot/$prp/$myarch/:relsync.merge", 2);
if ($relsync_merge) {
Expand All @@ -284,7 +284,7 @@ sub mergemetacachefile {
my ($gctx, $prp) = @_;

print " merging metacache data\n";
my $myarch = $gctx->{'myarch'};
my $myarch = $gctx->{'arch'};
my $reporoot = $gctx->{'reporoot'};
my $metacache_merge = BSUtil::retrieve("$reporoot/$prp/$myarch/:full.metacache.merge", 2);
if ($metacache_merge) {
Expand All @@ -304,7 +304,7 @@ sub mergemetacachefile {
sub mergebininfofile {
my ($gctx, $prp) = @_;

my $myarch = $gctx->{'myarch'};
my $myarch = $gctx->{'arch'};
my $reporoot = $gctx->{'reporoot'};
BSSched::BuildResult::read_gbininfo("$reporoot/$prp/$myarch");
my $repounchanged = $gctx->{'repounchanged'};
Expand Down

0 comments on commit e5a4fb4

Please sign in to comment.