Skip to content

Commit ac8ce04

Browse files
committed
Default to port 80 for weaviate
1 parent b020fcb commit ac8ce04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llmstack/data/destinations/vector_stores/weaviate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def initialize_client(self, *args, **kwargs):
303303
)
304304
elif self._deployment_config.instance.url:
305305
protocol, url = self._deployment_config.instance.url.split("://")
306-
host, port = url.split(":") if len(url.split(":")) == 2 else (url, 8080)
306+
host, port = url.split(":") if len(url.split(":")) == 2 else (url, 80)
307307
weaviate_client = weaviate.WeaviateClient(
308308
connection_params=weaviate.connect.base.ConnectionParams(
309309
http=weaviate.connect.base.ProtocolParams(host=host, port=port, secure=protocol == "https"),

0 commit comments

Comments
 (0)