Skip to content

Commit 25ae14d

Browse files
committed
delete init from weaviate
1 parent 2f9f224 commit 25ae14d

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/deploy-kubernetes.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
name: Deploy StudyMate to Kubernetes
1+
name: Deploy to Kubernetes
22

33
on:
44
push:
55
branches: [main]
66
paths:
7-
- 'client/**'
87
- 'server/**'
8+
- 'client/**'
99
- 'genAi/**'
1010
- 'infra/helm/**'
11+
- '.github/workflows/**'
1112
workflow_dispatch:
1213
inputs:
1314
domain:
@@ -34,7 +35,7 @@ jobs:
3435
- name: Checkout code
3536
uses: actions/checkout@v4
3637

37-
- name: Setup kubeconfig
38+
- name: Setup Kubernetes tools
3839
run: |
3940
mkdir -p ~/.kube
4041
cat > ~/.kube/config << 'EOF'

genAi/rag.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,7 @@ def __init__(self, doc_path: str):
5454
grpc_host=weaviate_host,
5555
grpc_port=50051,
5656
grpc_secure=False,
57-
skip_init_checks=True,
58-
additional_config=weaviate.init.AdditionalConfig(
59-
timeout=weaviate.init.Timeout(init=60)
60-
)
57+
skip_init_checks=True
6158
)
6259

6360
# Load documents

0 commit comments

Comments
 (0)