agent/wait-for-it.sh
jingrow 6e4a71e6c9
Some checks are pending
Agent Tests / Lint and Format (push) Waiting to run
Agent Tests / Unit Tests (push) Waiting to run
已适配jingrow
2025-05-14 14:37:30 +08:00

11 lines
128 B
Bash

#!/usr/bin/env bash
URL=$1
while :
do
if redis-cli -u $URL PING | grep -q PONG; then
break
fi
sleep 1
done