We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86e4814 commit 461c011Copy full SHA for 461c011
.github/workflows/CI-CD_Pipeline.yml
@@ -72,6 +72,12 @@ jobs:
72
timeout 10s bash -c 'until printf "" 2>>/dev/null >>/dev/tcp/localhost/6379; do sleep 1; done'
73
echo "Redis is ready!"
74
75
+ - name: Test Qdrant connection
76
+ run: |
77
+ echo "Testing Qdrant connection..."
78
+ timeout 20s bash -c 'until curl -sSf http://localhost:6333/collections >/dev/null; do sleep 1; done'
79
+ echo "Qdrant is ready!"
80
+
81
# ✅ application-test.yml에서 사용하는 모든 환경변수를 .env 파일에 생성
82
- name: Create test .env file
83
working-directory: backend
0 commit comments