feature/csv-pedimento

This commit is contained in:
hreyes
2026-03-02 10:03:45 -07:00
parent 442b188a45
commit 9473c05602
10 changed files with 857 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ wait_for_tcp() {
echo "Esperando a que $service esté disponible en ${host}:${port}..."
while [ $attempt -le $max_attempts ]; do
if python -c "import socket; s = socket.socket(); s.settimeout(3); s.connect(('$host', $port)); s.close()" 2>/dev/null; then
if python3 -c "import socket; s = socket.socket(); s.settimeout(3); s.connect(('$host', $port)); s.close()" 2>/dev/null; then
echo "$service está listo y accesible"
return 0
fi