Skip to content

Commit

Permalink
Merge pull request #1487 from rsvoboda/3.15-backports
Browse files Browse the repository at this point in the history
[3.15] use swapi.tech, update graphql-client quickstart
  • Loading branch information
jmartisk authored Jan 27, 2025
2 parents cd6bc28 + a752b5f commit 935ba51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# typesafe client config
quarkus.smallrye-graphql-client.star-wars-typesafe.url=https://swapi-graphql.netlify.app/.netlify/functions/index
quarkus.smallrye-graphql-client.star-wars-typesafe.url=https://swapi-graphql.netlify.app/graphql

# dynamic client config
quarkus.smallrye-graphql-client.star-wars-dynamic.url=https://swapi-graphql.netlify.app/.netlify/functions/index
quarkus.smallrye-graphql-client.star-wars-dynamic.url=https://swapi-graphql.netlify.app/graphql
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class ResourceUsingWebClient {

public ResourceUsingWebClient(Vertx vertx) {
this.client = WebClient.create(vertx,
new WebClientOptions().setDefaultHost("swapi.dev").setDefaultPort(443).setSsl(true)
new WebClientOptions().setDefaultHost("swapi.tech").setDefaultPort(443).setSsl(true)
.setTrustAll(true));
}

Expand Down

0 comments on commit 935ba51

Please sign in to comment.