We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug 404 when using WeaviateMemoryStore
To Reproduce Steps to reproduce the behavior:
var memoryStore = new WeaviateMemoryStore("http://localhost:8080/v1"); await foreach (var item in memoryStore.GetCollectionsAsync()) { Console.WriteLine($"collectionName: {item}:"); }
Reason it call "http://localhost:8080/{path}" not "http://localhost:8080/v1/{path}" see WeaviateMemoryStore.ExecuteHttpRequestAsync
new Uri(_endpoint, request.RequestUri);
new Uri(new Uri("http://localhost/v1"), "path") get "http://localhost/path", not "http://localhost/v1/path"
Platform
The text was updated successfully, but these errors were encountered:
new WeaviateMemoryStore("http://localhost:8080/v1/"); not new WeaviateMemoryStore("http://localhost:8080/v1");
Sorry, something went wrong.
No branches or pull requests
Describe the bug
404 when using WeaviateMemoryStore
To Reproduce
Steps to reproduce the behavior:
Reason
it call "http://localhost:8080/{path}" not "http://localhost:8080/v1/{path}"
see WeaviateMemoryStore.ExecuteHttpRequestAsync
new Uri(new Uri("http://localhost/v1"), "path") get "http://localhost/path", not "http://localhost/v1/path"
Platform
The text was updated successfully, but these errors were encountered: