Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
add http to the url in remote-client script
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill Lykov committed Feb 7, 2023
1 parent d53c49c commit 4a51514
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions net/remote/remote-client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ 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")
args+=(--entrypoint "http://$entrypointIp:8001")
fi

clientCommand="\
Expand Down

0 comments on commit 4a51514

Please sign in to comment.