From fbc7c9c431f4507acb775b888f18a70b4540f6aa Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Fri, 31 Aug 2018 11:22:28 -0700 Subject: [PATCH] fix client_start to deal with new client.sh --- ci/testnet-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/testnet-deploy.sh b/ci/testnet-deploy.sh index 164f656c5..898d78cbe 100755 --- a/ci/testnet-deploy.sh +++ b/ci/testnet-deploy.sh @@ -277,7 +277,7 @@ client_start() { set -x; \ sudo rm /tmp/solana.log; \ while : ; do \ - /snap/bin/solana.bench-tps $SOLANA_NET_ENTRYPOINT $fullnode_count --loop -s 600 --sustained -t \$threadCount 2>&1 | tee -a /tmp/solana.log; \ + /snap/bin/solana.bench-tps --num-nodes $fullnode_count --seconds 600 --sustained --threads \$threadCount 2>&1 | tee -a /tmp/solana.log; \ echo 'https://metrics.solana.com:8086/write?db=${INFLUX_DATABASE}&u=${INFLUX_USERNAME}&p=${INFLUX_PASSWORD}' \ | xargs curl --max-time 5 -XPOST --data-binary 'testnet-deploy,name=$netBasename clientexit=1'; \ echo Error: bench-tps should never exit | tee -a /tmp/solana.log; \