Skip to content

Commit

Permalink
[backend] argh, remoteprojid() does not work for the mount point
Browse files Browse the repository at this point in the history
  • Loading branch information
mlschroe committed May 6, 2013
1 parent a95a802 commit 2fded15
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/backend/bs_srcserver
Expand Up @@ -2552,8 +2552,9 @@ sub getprojpack {
die("sibling '$sib' from partition does not exist\n") if $BSConfig::siblings && !$BSConfig::siblings->{$sib};
if ($sib ne $sibling) {
# check if it is remote, if not then it belongs to another sibling
my $r = remoteprojid($projid);
next unless defined $r;
my $r = readproj($projid, 1);
$r = remoteprojid($projid) unless defined $r;
next unless $r && $r->{'remoteurl'};
}
push @$projids, $projid;
}
Expand Down

0 comments on commit 2fded15

Please sign in to comment.