Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
databyjp opened this issue Jul 29, 2024 · 0 comments
Open

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

databyjp opened this issue Jul 29, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@databyjp
Copy link
Contributor

databyjp commented Jul 29, 2024

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 databyjp added the bug Something isn't working label Jul 29, 2024
@databyjp databyjp changed the title Embedded does not work with custom ports & v1.25 or higher Embedded does not start up with custom ports & v1.25 or higher Jul 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant