fix: simplify startup readiness messaging

This commit is contained in:
linkong
2026-04-02 11:30:51 +08:00
parent 6bfcd05345
commit 07e4f519a1
5 changed files with 23 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ wait_for_http() {
return 0
fi
echo -e "${YELLOW}⏳ 等待${service_name}就绪 (${attempt}/${attempts})...${NC}"
echo -e "${YELLOW}⏳ 等待${service_name}就绪...${NC}"
sleep "$interval"
attempt=$((attempt + 1))
done