From 38a2217f7ee6c9fa172d2937a502b2f9acdc81c4 Mon Sep 17 00:00:00 2001 From: Yika Luo Date: Mon, 4 Nov 2024 14:01:37 -0800 Subject: [PATCH] remove retry --- sky/templates/aws-ray.yml.j2 | 1 - 1 file changed, 1 deletion(-) diff --git a/sky/templates/aws-ray.yml.j2 b/sky/templates/aws-ray.yml.j2 index ecba980857f..95751ab1849 100644 --- a/sky/templates/aws-ray.yml.j2 +++ b/sky/templates/aws-ray.yml.j2 @@ -184,7 +184,6 @@ setup_commands: {%- if docker_image is none %} sudo grep -e '^DefaultTasksMax' /etc/systemd/system.conf || (sudo bash -c 'echo "DefaultTasksMax=infinity" >> /etc/systemd/system.conf'); sudo systemctl set-property user-$(id -u $(whoami)).slice TasksMax=infinity; sudo systemctl daemon-reload; {%- endif %} - sudo apt install retry; mkdir -p ~/.ssh; (grep -Pzo -q "Host \*\n StrictHostKeyChecking no" ~/.ssh/config) || printf "Host *\n StrictHostKeyChecking no\n" >> ~/.ssh/config; [ -f /etc/fuse.conf ] && sudo sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf || (sudo sh -c 'echo "user_allow_other" > /etc/fuse.conf'); # This is needed for `-o allow_other` option for `goofys`;