From 9f35ffc639591cd3a33ff304183338872ed96bb6 Mon Sep 17 00:00:00 2001 From: kirill lykov Date: Wed, 8 Feb 2023 10:56:10 +0100 Subject: [PATCH] add http to the url in remote-client script (#30167) --- net/remote/remote-client.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/remote/remote-client.sh b/net/remote/remote-client.sh index 82e23c964..21c509ec6 100755 --- a/net/remote/remote-client.sh +++ b/net/remote/remote-client.sh @@ -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