Skip to content

Commit

Permalink
Merge pull request #9609 from adrianschroeter/fix_warning
Browse files Browse the repository at this point in the history
[backend] fix warning about missing dbgsplit
  • Loading branch information
adrianschroeter committed May 29, 2020
2 parents f86f173 + 96a2fdb commit 2705ab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/bs_publish
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,7 @@ sub sync_to_stage {

for my $stageserver (@stageservers) {
if ($stageserver =~ /^rsync:\/\//) {
$stageserver .= $dbgsplit if $stageservers; # hmm
$stageserver .= $dbgsplit if $dbgsplit && $stageservers;
print " running rsync to $stageserver at ".localtime(time)."\n";
# rsync with a timeout of 1 hour
# sync first just the binaries without deletion of the old ones, afterwards the rest(esp. meta data) and cleanup
Expand Down

0 comments on commit 2705ab2

Please sign in to comment.