Skip to content

Commit

Permalink
add http to the url in remote-client script (#30167)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill lykov authored Feb 8, 2023
1 parent cf77f5d commit 9f35ffc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/remote/remote-client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9f35ffc

Please sign in to comment.