Skip to content

Commit

Permalink
Client URL scheme validation pipeline fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkec committed Aug 27, 2023
1 parent e7c4c2d commit ca0a04f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class DirectClient implements Http1Client {
public DirectClient(HttpRouting routing) {
this.routing = routing;
this.httpClient = Http1Client.builder()
.baseUri(URI.create("unit://helidon-unit:65000"))
.baseUri(URI.create("http://helidon-unit:65000"))
.build();
this.router = Router.builder().addRouting(routing).build();
this.router.beforeStart();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class DirectWebClient implements WebClient {
public DirectWebClient(HttpRouting routing) {
this.routing = routing;
this.webClient = WebClient.builder()
.baseUri("unit://helidon-unit:65000")
.baseUri("http://helidon-unit:65000")
.build();
this.router = Router.builder().addRouting(routing).build();
this.router.beforeStart();
Expand Down

0 comments on commit ca0a04f

Please sign in to comment.