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
In versions 3.0.0-beta.23 and 3.0.0-rc.0 the setting for port in the rest settings seems to be ignored.
If I set the host to http://localhost and port to 8080 I get an error message as soon as I try to interact with the API, e.g. this.client.collection.exists('MyClass')
When I leave out the leading http::// in the host setting, everything works fine.
The issue is located in node/esm/index.js, line 91 (3.0.0-rc.0). I propose to change this
Hi @tritos-design, thanks for flagging this one! It's actually not intended that users provide the host parameter as http://localhost since this is a URL. This is why the client infers that the port must be 80 in such a case.
I will refactor for the next release indicating that the http:// prefix should not be supplied with a warning. To specify whether a connection should be encrypted, the secure boolean should be used instead 😁
In versions 3.0.0-beta.23 and 3.0.0-rc.0 the setting for port in the rest settings seems to be ignored.
If I set the host to
http://localhost
and port to8080
I get an error message as soon as I try to interact with the API, e.g.this.client.collection.exists('MyClass')
because the client seems to try and establish a connection at http://localhost:80.
When setting host to
http://localhost:8080
everything works fine regardless of which port I specify in the port option.Here is my code:
For grpc the host and port settings are used as expected.
See also: https://forum.weaviate.io/t/fetch-error-between-ts-client-and-weaviate-when-deployed-with-docker-compose-on-windows/2146/4?u=accesspointai
The text was updated successfully, but these errors were encountered: