add http to the url in remote-client script (#30167)
This commit is contained in:
parent
cf77f5dbb8
commit
9f35ffc639
|
@ -72,10 +72,10 @@ solana-bench-tps)
|
||||||
|
|
||||||
if ${TPU_CLIENT}; then
|
if ${TPU_CLIENT}; then
|
||||||
args+=(--use-tpu-client)
|
args+=(--use-tpu-client)
|
||||||
args+=(--url "$entrypointIp:8899")
|
args+=(--url "http://$entrypointIp:8899")
|
||||||
elif ${RPC_CLIENT}; then
|
elif ${RPC_CLIENT}; then
|
||||||
args+=(--use-rpc-client)
|
args+=(--use-rpc-client)
|
||||||
args+=(--url "$entrypointIp:8899")
|
args+=(--url "http://$entrypointIp:8899")
|
||||||
else
|
else
|
||||||
args+=(--entrypoint "$entrypointIp:8001")
|
args+=(--entrypoint "$entrypointIp:8001")
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue