From cf2c180a8b9a441419c056d2692adb75ca9458b3 Mon Sep 17 00:00:00 2001 From: Maksim Efremov Date: Fri, 18 Oct 2024 14:20:02 +0300 Subject: [PATCH] chore(scripts/dev.localmode-env.sh): minor fix --- packages/ui/scripts/dev.localmode-env.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/scripts/dev.localmode-env.sh b/packages/ui/scripts/dev.localmode-env.sh index 3a3b283e3..8f1d7d600 100644 --- a/packages/ui/scripts/dev.localmode-env.sh +++ b/packages/ui/scripts/dev.localmode-env.sh @@ -18,7 +18,7 @@ export PROXY=$proxyHost:$proxyPort curl http://${PROXY}/hosts | head -n 1 | grep '\["' if [ $? -ne 0 -o "${useStop}" = "1" ]; then - srcUrl=https://raw.githubusercontent.com/ytsaurus/ytsaurus/main/yt/docker/local/run_local_cluster.sh + srcUrl=https://raw.githubusercontent.com/ytsaurus/ytsaurus/85b79ee968a7d36258daa705929404ac4bfdc0c4/yt/docker/local/run_local_cluster.sh echo Error: Cannot get list of hosts. Please make sure your proxy is available. echo -e "\nYou can use ${srcUrl} to run your local cluster:" read -p "Do you want to download the file? [yN]: " getAndRun @@ -29,7 +29,7 @@ if [ $? -ne 0 -o "${useStop}" = "1" ]; then echo -e "\n\nrun_local_cluster.sh is downloaded, to run your cluster use command:" - command="./run_local_cluster.sh --yt-version dev --docker-hostname $(hostname) --fqdn localhost --node-count 2 --ui-app-installation ${APP_INSTALLATION:-''}" + command="./run_local_cluster.sh --yt-version stable --docker-hostname $(hostname) --fqdn localhost --node-count 2 --ui-app-installation ${APP_INSTALLATION:-''}" if [ "$SKIP_PULL" != "" ]; then command="$command --ui-skip-pull true --yt-skip-pull true"