add http to the url in remote-client script (#30167)

This commit is contained in:
kirill lykov 2023-02-08 10:56:10 +01:00 committed by GitHub
parent cf77f5dbb8
commit 9f35ffc639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -72,10 +72,10 @@ solana-bench-tps)
if ${TPU_CLIENT}; then
args+=(--use-tpu-client)
args+=(--url "$entrypointIp:8899")
args+=(--url "http://$entrypointIp:8899")
elif ${RPC_CLIENT}; then
args+=(--use-rpc-client)
args+=(--url "$entrypointIp:8899")
args+=(--url "http://$entrypointIp:8899")
else
args+=(--entrypoint "$entrypointIp:8001")
fi