Skip to content

Commit 5a21081

Browse files
committed
fix: build URL with transport options
1 parent d72cf26 commit 5a21081

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/main/java/io/weaviate/client6/v1/internal/rest/DefaultRestTransport.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ public DefaultRestTransport(RestTransportOptions transportOptions) {
7878
}
7979

8080
private <RequestT> String uri(Endpoint<RequestT, ?> ep, RequestT req) {
81-
return transportOptions.baseUrl()
82-
+ ep.requestUrl(req)
81+
return ep.requestUrl(transportOptions, req)
8382
+ UrlEncoder.encodeQuery(ep.queryParameters(req));
8483
}
8584

0 commit comments

Comments
 (0)