Guard against rsyncing TBs of ledger

This commit is contained in:
Michael Vines 2018-07-27 23:44:52 -07:00 committed by Grimes
parent c68ee0040d
commit 81db333490
1 changed files with 5 additions and 1 deletions

View File

@ -70,7 +70,11 @@ tune_networking
SOLANA_LEADER_CONFIG_DIR="$SOLANA_CONFIG_DIR"/leader-config
rm -rf "$SOLANA_LEADER_CONFIG_DIR"
set -ex
$rsync -vPrz "$rsync_leader_url"/config/ "$SOLANA_LEADER_CONFIG_DIR"
$rsync -vPrz --max-size=100M "$rsync_leader_url"/config/ "$SOLANA_LEADER_CONFIG_DIR"
[[ -r "$SOLANA_LEADER_CONFIG_DIR"/ledger.log ]] || {
echo "Unable to retrieve ledger.log from $rsync_leader_url"
exit 1
}
# Ensure the validator has at least 1 token before connecting to the network
# TODO: Remove this workaround