weaviate-python-client icon indicating copy to clipboard operation
weaviate-python-client copied to clipboard

Embedded does not start up with custom ports & `v1.25` or higher

Open databyjp opened this issue 1 year ago • 0 comments

Embedded does not start when using v1.25.x or higher.

Code to reproduce (client v4.7.1)

import weaviate

for version in [
    "1.24.21",
    "1.25.9",
    "1.26.1",
]:
    try:
        client = weaviate.connect_to_embedded(
            version=version,
        )

        assert client.is_ready()

        client.close()

        client = weaviate.connect_to_embedded(
            version=version,
            port=8089,
            grpc_port=50059,
        )

        assert client.is_ready()

        client.close()
    except Exception as e:
        print(f"Version: {version} failed with error: {e}")
        continue

This fails for 1.25/1.26 but not 1.24

databyjp avatar Jul 29 '24 10:07 databyjp