Skip to content

Commit be32cb0

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

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/CI-CD_Pipeline.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,6 @@ jobs:
4747
image: qdrant/qdrant:v1.3.1
4848
ports:
4949
- 6333:6333
50-
options: >-
51-
--health-cmd "curl -f http://localhost:6333/health || exit 1"
52-
--health-interval 10s
53-
--health-timeout 5s
54-
--health-retries 5
5550

5651
steps:
5752
- uses: actions/checkout@v4
@@ -73,10 +68,11 @@ jobs:
7368
timeout 10s bash -c 'until printf "" 2>>/dev/null >>/dev/tcp/localhost/6379; do sleep 1; done'
7469
echo "Redis is ready!"
7570
71+
# ✅ Qdrant 연결 테스트
7672
- name: Test Qdrant connection
7773
run: |
7874
echo "Testing Qdrant connection..."
79-
timeout 20s bash -c 'until curl -sSf http://localhost:6333/collections >/dev/null; do sleep 1; done'
75+
timeout 30s bash -c 'until curl -sSf http://localhost:6333/collections >/dev/null; do sleep 1; done'
8076
echo "Qdrant is ready!"
8177
8278
# ✅ application-test.yml에서 사용하는 모든 환경변수를 .env 파일에 생성

0 commit comments

Comments
 (0)