Skip to content

Commit c79b34c

Browse files
committed
fix:[ci/cd]: 버그 수정
1 parent be32cb0 commit c79b34c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/CI-CD_Pipeline.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
image: qdrant/qdrant:v1.3.1
4848
ports:
4949
- 6333:6333
50+
- 6334:6334
5051

5152
steps:
5253
- uses: actions/checkout@v4
@@ -69,10 +70,10 @@ jobs:
6970
echo "Redis is ready!"
7071
7172
# ✅ Qdrant 연결 테스트
72-
- name: Test Qdrant connection
73+
- name: Wait for Qdrant
7374
run: |
74-
echo "Testing Qdrant connection..."
75-
timeout 30s bash -c 'until curl -sSf http://localhost:6333/collections >/dev/null; do sleep 1; done'
75+
echo "Waiting for Qdrant to be ready..."
76+
timeout 40s bash -c 'until curl -sSf http://localhost:6333/collections >/dev/null; do sleep 1; done'
7677
echo "Qdrant is ready!"
7778
7879
# ✅ application-test.yml에서 사용하는 모든 환경변수를 .env 파일에 생성

0 commit comments

Comments
 (0)