You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when you give a url to qdrantclient, the port is getting appended to the end of the url, this is wrong.
if you give QdrantClient({url: "https://qdrant.mydomain.com" })
the error received contains path: "https://qdrant.mydomain.com:6333/collections/my_collection" this is not a valid url and will generate the error.
if the url parameter is passed, no port should be appended to it.
The text was updated successfully, but these errors were encountered:
when you give a url to qdrantclient, the port is getting appended to the end of the url, this is wrong.
if you give QdrantClient({url: "https://qdrant.mydomain.com" })
the error received contains
path: "https://qdrant.mydomain.com:6333/collections/my_collection"
this is not a valid url and will generate the error.if the url parameter is passed, no port should be appended to it.
The text was updated successfully, but these errors were encountered: